diff options
Diffstat (limited to 'kwin-styles/cde/CMakeLists.txt')
-rw-r--r-- | kwin-styles/cde/CMakeLists.txt | 34 |
1 files changed, 34 insertions, 0 deletions
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} +) |