diff options
Diffstat (limited to 'kstyles/plastik/config')
-rw-r--r-- | kstyles/plastik/config/CMakeLists.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/kstyles/plastik/config/CMakeLists.txt b/kstyles/plastik/config/CMakeLists.txt new file mode 100644 index 000000000..89da74a16 --- /dev/null +++ b/kstyles/plastik/config/CMakeLists.txt @@ -0,0 +1,41 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdeui +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kstyle_plastik_config ###################### + +set( target kstyle_plastik_config ) + +set( ${target}_SRCS + plastikconf.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK kdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |