diff options
Diffstat (limited to 'tdeinit/CMakeLists.txt')
-rw-r--r-- | tdeinit/CMakeLists.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tdeinit/CMakeLists.txt b/tdeinit/CMakeLists.txt new file mode 100644 index 000000000..817492c6c --- /dev/null +++ b/tdeinit/CMakeLists.txt @@ -0,0 +1,28 @@ +################################################# +# +# (C) 2010-2011 Timothy Pearson +# kb9vqf (AT) pearsoncomputing.net +# +# 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} +) + + +##### tdeinit_phase1 (executable) ####################### + +tde_add_executable( tdeinit_phase1 + SOURCES phase1.cpp + LINK udev + DESTINATION ${BIN_INSTALL_DIR} +) |