From 9ef5a045dd516e8223b7aa97a46ac94bbd5839ae Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Sat, 26 Jun 2021 16:06:03 +0300 Subject: Replaced Autotools build files with CMake rules Signed-off-by: Mavridis Philippe --- client/CMakeLists.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 client/CMakeLists.txt (limited to 'client/CMakeLists.txt') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt new file mode 100644 index 0000000..64b6bd3 --- /dev/null +++ b/client/CMakeLists.txt @@ -0,0 +1,40 @@ +tde_import( twin ) + +add_subdirectory( config ) + +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_LIBRARY_DIRS} +) + + +##### twin3_deKorator (kpart) + +tde_add_kpart( twin3_deKorator AUTOMOC + + SOURCES + deKoratorclient.cc + shadow.cpp + LINK + tdecore-shared + tdeui-shared + tdecorations-shared + + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data + +install( + FILES deKorator.desktop + DESTINATION ${DATA_INSTALL_DIR}/twin +) -- cgit v1.2.1