diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-07 21:50:33 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-07 21:50:33 -0600 |
commit | 0b6057404f65218182ab27a9483a21065ef61fca (patch) | |
tree | b8b06dfa2deb965bebfbe131a772124e3e693a96 /twin/clients/keramik/CMakeLists.txt | |
parent | 43d99cc2477266cb9072e179137f0e8485370b3d (diff) | |
download | tdebase-0b6057404f65218182ab27a9483a21065ef61fca.tar.gz tdebase-0b6057404f65218182ab27a9483a21065ef61fca.zip |
Rename kwin to twin (Part 2 of 2)
Diffstat (limited to 'twin/clients/keramik/CMakeLists.txt')
-rw-r--r-- | twin/clients/keramik/CMakeLists.txt | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/twin/clients/keramik/CMakeLists.txt b/twin/clients/keramik/CMakeLists.txt new file mode 100644 index 000000000..67e739d48 --- /dev/null +++ b/twin/clients/keramik/CMakeLists.txt @@ -0,0 +1,65 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( config ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/twin/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES keramik.desktop DESTINATION ${DATA_INSTALL_DIR}/twin ) + + +##### twin3_keramik (module) #################### + +set_source_files_properties( keramik.cpp + PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tiles.h ) + +tde_add_kpart( twin3_keramik AUTOMOC + SOURCES keramik.cpp + LINK tdecorations-shared tdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### tiles.h (header) ########################## + +set( pics + pics/caption-large-left.png pics/caption-small-right.png + pics/titlebar-center.png pics/titlebutton-square.png + pics/border-left.png pics/caption-large-right.png + pics/grabbar-center.png pics/titlebar-left.png + pics/border-right.png pics/caption-small-center.png + pics/grabbar-left.png pics/titlebar-right.png + pics/caption-large-center.png pics/caption-small-left.png + pics/grabbar-right.png pics/titlebutton-round.png + pics/bottom-left.png pics/bottom-right.png pics/bottom-center.png + pics/titlebutton-square-large.png pics/titlebutton-square-huge.png + pics/titlebutton-round-large.png pics/titlebutton-round-huge.png ) + +add_custom_command( OUTPUT tiles.h + COMMAND ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics} + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics} ) + +tde_add_executable( embedtool + SOURCES embedtool.cpp + LINK ${TQT_LIBRARIES} +) |