diff options
Diffstat (limited to 'twin/clients/plastik/CMakeLists.txt')
-rw-r--r-- | twin/clients/plastik/CMakeLists.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/twin/clients/plastik/CMakeLists.txt b/twin/clients/plastik/CMakeLists.txt new file mode 100644 index 000000000..d782413ce --- /dev/null +++ b/twin/clients/plastik/CMakeLists.txt @@ -0,0 +1,39 @@ +################################################# +# +# (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 ) + +add_definitions( -DQT_PLUGIN ) + +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 plastik.desktop DESTINATION ${DATA_INSTALL_DIR}/twin ) + + +##### twin3_plastik (module) #################### + +tde_add_kpart( twin3_plastik AUTOMOC + SOURCES plastik.cpp plastikclient.cpp plastikbutton.cpp misc.cpp + LINK tdecorations-shared tdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |