mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
20 lines
507 B
CMake
20 lines
507 B
CMake
########### next target ###############
|
|
|
|
set(kreadconfig_SRCS kreadconfig.cpp )
|
|
|
|
add_executable(kreadconfig ${kreadconfig_SRCS})
|
|
|
|
target_link_libraries(kreadconfig ${KDE4_KDECORE_LIBS} )
|
|
|
|
install(TARGETS kreadconfig ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kwriteconfig_SRCS kwriteconfig.cpp )
|
|
|
|
add_executable(kwriteconfig ${kwriteconfig_SRCS})
|
|
|
|
target_link_libraries(kwriteconfig ${KDE4_KDECORE_LIBS} )
|
|
|
|
install(TARGETS kwriteconfig ${INSTALL_TARGETS_DEFAULT_ARGS})
|