From e4a719c080c3d26387a3288815eb20c164c3ed37 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Wed, 19 Dec 2018 12:15:31 +0100 Subject: conversion to the cmake building system Signed-off-by: gregory guy --- src/CMakeLists.txt | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/CMakeLists.txt (limited to 'src/CMakeLists.txt') 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 +) -- cgit v1.2.1