diff options
Diffstat (limited to 'ksysguard/ksysguardd/CMakeLists.txt')
-rw-r--r-- | ksysguard/ksysguardd/CMakeLists.txt | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/ksysguard/ksysguardd/CMakeLists.txt b/ksysguard/ksysguardd/CMakeLists.txt new file mode 100644 index 000000000..9aa0ac4e7 --- /dev/null +++ b/ksysguard/ksysguardd/CMakeLists.txt @@ -0,0 +1,43 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +# FIXME there is only Linux support + +if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" ) + set( OS_SPECIFIC_DIR Linux ) +else() + tde_message_fatal( "Your operating system (${CMAKE_SYSTEM_NAME}) is not supported yet." ) +endif() + + +add_subdirectory( ${OS_SPECIFIC_DIR} ) + + +add_definitions( + -DKSYSGUARDDRCFILE=\"${SYSCONF_INSTALL_DIR}/ksysguarddrc\" + -DOSTYPE_${CMAKE_SYSTEM_NAME} +) + + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/${OS_SPECIFIC_DIR} + ${CMAKE_SOURCE_DIR}/ksysguard/CContLib +) + + +##### ksysguardd (executable) ################### + +tde_add_executable( ksysguardd AUTOMOC + SOURCES Command.c conf.c ksysguardd.c PWUIDCache.c + LINK ccont-static ksysguardd-static ${TDE_LIB_DIR}/libkdefakes_nonpic.a + DESTINATION ${BIN_INSTALL_DIR} +) |