aboutsummaryrefslogtreecommitdiff
path: root/src/kreadconfig/CMakeLists.txt
blob: 3187884df7e7d0ae02bac8b22b10ab558c1e951a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

project(kreadconfig)



########### next target ###############

set(kreadconfig_SRCS kreadconfig.cpp )

kde4_automoc(${kreadconfig_SRCS})

kde4_add_executable(kreadconfig NOGUI ${kreadconfig_SRCS})

target_link_libraries(kreadconfig  ${KDE4_KDECORE_LIBS} )

install(TARGETS kreadconfig DESTINATION ${BIN_INSTALL_DIR})


########### next target ###############

set(kwriteconfig_SRCS kwriteconfig.cpp )

kde4_automoc(${kwriteconfig_SRCS})

kde4_add_executable(kwriteconfig NOGUI ${kwriteconfig_SRCS})

target_link_libraries(kwriteconfig ${KDE4_KDECORE_LIBS} )

install(TARGETS kwriteconfig DESTINATION ${BIN_INSTALL_DIR})