diff options
Diffstat (limited to 'tsak/CMakeLists.txt')
-rw-r--r-- | tsak/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsak/CMakeLists.txt b/tsak/CMakeLists.txt new file mode 100644 index 000000000..6aa5b4973 --- /dev/null +++ b/tsak/CMakeLists.txt @@ -0,0 +1,27 @@ +################################################# +# +# (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} +) + + +##### tsak (executable) ####################### + +tde_add_executable( tsak + SOURCES main.cpp + DESTINATION ${BIN_INSTALL_DIR} +) |