diff options
Diffstat (limited to 'kstart/CMakeLists.txt')
-rw-r--r-- | kstart/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kstart/CMakeLists.txt b/kstart/CMakeLists.txt new file mode 100644 index 000000000..bdb525f01 --- /dev/null +++ b/kstart/CMakeLists.txt @@ -0,0 +1,29 @@ +################################################# +# +# (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( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kstart (executable) ####################### + +tde_add_executable( kstart AUTOMOC + SOURCES kstart.cpp + LINK kdecore-shared + DESTINATION ${BIN_INSTALL_DIR} +) |