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