2 ########### next target ###############
4 include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/../control )
6 set(solid-network_SRCS solid-network.cpp)
7 set(solid-bluetooth_SRCS solid-bluetooth.cpp)
8 set(solid-powermanagement_SRCS solid-powermanagement.cpp)
10 kde4_add_executable(solid-network ${solid-network_SRCS})
11 kde4_add_executable(solid-bluetooth ${solid-bluetooth_SRCS})
12 kde4_add_executable(solid-powermanagement ${solid-powermanagement_SRCS})
14 target_link_libraries(solid-network ${KDE4_KDECORE_LIBS} ${KDE4_SOLID_LIBS} solidcontrol)
15 target_link_libraries(solid-bluetooth ${KDE4_KDECORE_LIBS} ${KDE4_SOLID_LIBS} solidcontrol)
16 target_link_libraries(solid-powermanagement ${KDE4_KDECORE_LIBS} ${KDE4_SOLID_LIBS} solidcontrol)
18 install(TARGETS solid-network ${INSTALL_TARGETS_DEFAULT_ARGS})
19 install(TARGETS solid-bluetooth ${INSTALL_TARGETS_DEFAULT_ARGS})
20 install(TARGETS solid-powermanagement ${INSTALL_TARGETS_DEFAULT_ARGS})
22 ########### install files ###############