From 5379c37cfc91f24716af951dd08503f65f7575d7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 20 Oct 2011 03:59:04 +0000 Subject: Commit initial kdeartwork CMake support, courtesy of Golubev Alexander git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeartwork@1259766 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kwin-styles/cde/CMakeLists.txt | 34 ++++++++++++++++++++++++++++++++++ kwin-styles/cde/config/CMakeLists.txt | 28 ++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 kwin-styles/cde/CMakeLists.txt create mode 100644 kwin-styles/cde/config/CMakeLists.txt (limited to 'kwin-styles/cde') diff --git a/kwin-styles/cde/CMakeLists.txt b/kwin-styles/cde/CMakeLists.txt new file mode 100644 index 00000000..cc24e732 --- /dev/null +++ b/kwin-styles/cde/CMakeLists.txt @@ -0,0 +1,34 @@ +################################################# +# +# (C) 2011 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( config ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### other data ################################ + +install( FILES cde.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin ) + +##### kwin3_cde ################################## + +tde_add_kpart( kwin3_cde AUTOMOC + SOURCES cdeclient.cpp + LINK kdecorations-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kwin-styles/cde/config/CMakeLists.txt b/kwin-styles/cde/config/CMakeLists.txt new file mode 100644 index 00000000..5c5427b1 --- /dev/null +++ b/kwin-styles/cde/config/CMakeLists.txt @@ -0,0 +1,28 @@ +################################################# +# +# (C) 2011 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### kwin_cde_config (module) ################### + +tde_add_kpart( kwin_cde_config AUTOMOC + SOURCES config.cpp + LINK kdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) -- cgit v1.2.1