diff options
author | Alexander Golubev <[email protected]> | 2013-10-15 16:26:13 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-15 16:26:13 +0200 |
commit | 1a22301f46db807500b77119ae0132b9a3f876c5 (patch) | |
tree | ebf70d60bf7341685d1c4f6eb945e8d36baab9b2 /ksig | |
parent | 6d9f2a4901eda474254a5d62a8c3701c2067ea58 (diff) | |
download | tdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.tar.gz tdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.zip |
Initial cmake conversion
Diffstat (limited to 'ksig')
-rw-r--r-- | ksig/CMakeLists.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ksig/CMakeLists.txt b/ksig/CMakeLists.txt new file mode 100644 index 0000000..ea3d929 --- /dev/null +++ b/ksig/CMakeLists.txt @@ -0,0 +1,39 @@ +# This file is genereted by triniy-automake-cmake-convert script by Fat-Zer + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### ksig (executable) ######################### + +tde_add_executable( ksig AUTOMOC + SOURCES siggenerator.cpp siglistview.cpp siglistviewitem.cpp ksig.cpp + standardtextbase.ui standardtext.cpp main.cpp + LINK tdeio-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons ##################################### + +tde_install_icons( ) + + +##### other data ################################ + +install( FILES ksigui.rc + DESTINATION ${DATA_INSTALL_DIR}/ksig +) + +install( FILES ksig.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) |