2014-11-15 04:16:00 +02:00
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kreadconfig_SRCS kreadconfig.cpp )
|
|
|
|
|
2015-09-01 04:37:19 +03:00
|
|
|
add_executable(kreadconfig ${kreadconfig_SRCS})
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2023-06-17 23:26:56 +03:00
|
|
|
target_link_libraries(kreadconfig KDE4::kdecore)
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2023-06-17 18:38:55 +03:00
|
|
|
install(
|
|
|
|
TARGETS kreadconfig
|
|
|
|
DESTINATION ${KDE4_BIN_INSTALL_DIR}
|
|
|
|
)
|
2014-11-15 04:16:00 +02:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(kwriteconfig_SRCS kwriteconfig.cpp )
|
|
|
|
|
2015-09-01 04:37:19 +03:00
|
|
|
add_executable(kwriteconfig ${kwriteconfig_SRCS})
|
2023-06-17 23:26:56 +03:00
|
|
|
target_link_libraries(kwriteconfig KDE4::kdecore)
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2023-06-17 18:38:55 +03:00
|
|
|
install(
|
|
|
|
TARGETS kwriteconfig
|
|
|
|
DESTINATION ${KDE4_BIN_INSTALL_DIR}
|
|
|
|
)
|