2015-11-06 05:56:50 +02:00
|
|
|
project(autostart)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2015-11-06 05:56:50 +02:00
|
|
|
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR})
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2015-11-06 05:56:50 +02:00
|
|
|
set(kcm_autostart_PART_SRCS
|
2014-11-13 19:30:51 +02:00
|
|
|
autostartitem.cpp
|
|
|
|
advanceddialog.cpp
|
2015-09-01 04:37:19 +03:00
|
|
|
autostart.cpp
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2015-11-06 05:56:50 +02:00
|
|
|
kde4_add_plugin(kcm_autostart ${kcm_autostart_PART_SRCS})
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-17 23:26:56 +03:00
|
|
|
target_link_libraries(kcm_autostart KDE4::kio)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2015-11-06 05:56:50 +02:00
|
|
|
install(
|
|
|
|
TARGETS kcm_autostart
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
2015-11-06 05:56:50 +02:00
|
|
|
)
|
|
|
|
install(
|
|
|
|
FILES autostart.desktop
|
2020-02-08 19:29:32 +00:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
2015-11-06 05:56:50 +02:00
|
|
|
)
|