diff options
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 +) |