diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-20 03:59:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-20 03:59:04 +0000 |
commit | 5379c37cfc91f24716af951dd08503f65f7575d7 (patch) | |
tree | 59288babdc8ae3bf4b529b7ced17509450f05679 /kwin-styles/smooth-blend/client | |
parent | 99a9c9fb9a9ce322e8b43fc101877c6a78622bca (diff) | |
download | tdeartwork-5379c37cfc91f24716af951dd08503f65f7575d7.tar.gz tdeartwork-5379c37cfc91f24716af951dd08503f65f7575d7.zip |
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
Diffstat (limited to 'kwin-styles/smooth-blend/client')
-rw-r--r-- | kwin-styles/smooth-blend/client/CMakeLists.txt | 38 | ||||
-rw-r--r-- | kwin-styles/smooth-blend/client/config/CMakeLists.txt | 32 |
2 files changed, 70 insertions, 0 deletions
diff --git a/kwin-styles/smooth-blend/client/CMakeLists.txt b/kwin-styles/smooth-blend/client/CMakeLists.txt new file mode 100644 index 00000000..09011c41 --- /dev/null +++ b/kwin-styles/smooth-blend/client/CMakeLists.txt @@ -0,0 +1,38 @@ +################################################# +# +# (C) 2011 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( config ) + +add_definitions( + -DQT_PLUGIN +) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### other data ################################ + +install( FILES smoothblend.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin ) + +##### kwin3_smoothblend ########################## + +tde_add_kpart( kwin3_smoothblend AUTOMOC + SOURCES smoothblend.cc + LINK kdecorations-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kwin-styles/smooth-blend/client/config/CMakeLists.txt b/kwin-styles/smooth-blend/client/config/CMakeLists.txt new file mode 100644 index 00000000..6f858e92 --- /dev/null +++ b/kwin-styles/smooth-blend/client/config/CMakeLists.txt @@ -0,0 +1,32 @@ +################################################# +# +# (C) 2011 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + -DQT_PLUGIN +) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### kwin_smoothblend_config (module) ########## + +tde_add_kpart( kwin_smoothblend_config AUTOMOC + SOURCES configdialog.ui smoothblendconfig.cc + LINK kdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |