ad01ef1695
Add the necessary bits for XDG activation to work Move the code for launching the settings from the daemon to the respective processes so that we don't need to pass activation tokens over another process boundary
13 lines
518 B
CMake
13 lines
518 B
CMake
add_definitions(-DTRANSLATION_DOMAIN="kdeconnect-settings")
|
|
|
|
qt5_add_resources(kdeconnect_custom_icons_SRCS ${CMAKE_SOURCE_DIR}/icons/custom_icons.qrc)
|
|
|
|
add_executable(kdeconnect-settings
|
|
main.cpp
|
|
${kdeconnect_custom_icons_SRCS}
|
|
)
|
|
|
|
target_link_libraries(kdeconnect-settings kdeconnectversion KF5::I18n KF5::KCMUtils KF5::DBusAddons KF5::WindowSystem)
|
|
|
|
install(TARGETS kdeconnect-settings ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
|
|
install(FILES org.kde.kdeconnect-settings.desktop DESTINATION ${KDE_INSTALL_APPDIR})
|