diff options
author | gregory guy <g-gregory@gmx.fr> | 2018-12-19 12:15:31 +0100 |
---|---|---|
committer | gregory guy <g-gregory@gmx.fr> | 2018-12-19 12:15:31 +0100 |
commit | e4a719c080c3d26387a3288815eb20c164c3ed37 (patch) | |
tree | 645746dc91a2bfe7f08f673e905f237bbd31aa74 /src | |
parent | 0a29042c7db36952e5eb3c01a34ee723fdb8f863 (diff) | |
download | potracegui-e4a719c080c3d26387a3288815eb20c164c3ed37.tar.gz potracegui-e4a719c080c3d26387a3288815eb20c164c3ed37.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeL10n.txt | 1 | ||||
-rw-r--r-- | src/CMakeLists.txt | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt new file mode 100644 index 0000000..4a8b579 --- /dev/null +++ b/src/CMakeL10n.txt @@ -0,0 +1 @@ +tde_l10n_create_template( "potracegui" ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..d3bf61d --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,50 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### potracegui (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + MainWidgetBase.ui + main.cpp + potracegui.cpp + autotraceformats.cpp + mainwidget.cpp + options.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons + +tde_install_icons( ${PROJECT_NAME} ) + + +##### other data + +install( + FILES potraceguiui.rc + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${APPS_INSTALL_DIR}/Graphics +) |