diff options
Diffstat (limited to 'kreadconfig/CMakeLists.txt')
-rw-r--r-- | kreadconfig/CMakeLists.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/kreadconfig/CMakeLists.txt b/kreadconfig/CMakeLists.txt new file mode 100644 index 000000000..126c2c93f --- /dev/null +++ b/kreadconfig/CMakeLists.txt @@ -0,0 +1,37 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kreadconfig (executable) ################## + +tde_add_executable( kreadconfig + SOURCES kreadconfig.cpp + LINK kdecore-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### kwriteconfig (executable) ################# + +tde_add_executable( kwriteconfig + SOURCES kwriteconfig.cpp + LINK kdecore-shared + DESTINATION ${BIN_INSTALL_DIR} +) |