You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
656 B
24 lines
656 B
add_executable(kcminit main.cpp) |
|
target_link_libraries(kcminit |
|
Qt::Core |
|
Qt::Gui |
|
Qt::DBus |
|
KF5::CoreAddons |
|
KF5::Service |
|
KF5::I18n |
|
KF5::ConfigCore |
|
PW::KWorkspace |
|
) |
|
install(TARGETS kcminit ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) |
|
|
|
add_custom_command(TARGET kcminit POST_BUILD |
|
COMMAND ${CMAKE_COMMAND} -E create_symlink kcminit kcminit_startup) |
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kcminit_startup DESTINATION ${KDE_INSTALL_BINDIR}) |
|
|
|
ecm_install_configured_files( |
|
INPUT |
|
plasma-kcminit-phase1.service.in |
|
plasma-kcminit.service.in |
|
DESTINATION |
|
${KDE_INSTALL_SYSTEMDUSERUNITDIR} |
|
)
|
|
|