diff options
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/CMakeLists.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt new file mode 100644 index 0000000..a374204 --- /dev/null +++ b/src/app/CMakeLists.txt @@ -0,0 +1,32 @@ +################################################# +# +# (C) 2016 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### filelight (executable) #################### + +tde_add_executable( filelight AUTOMOC + SOURCES historyAction.cpp mainWindow.cpp main.cpp + LINK tdeui-shared tdeparts-shared + DESTINATION ${BIN_INSTALL_DIR} +) |