diff options
Diffstat (limited to 'kstyles/asteroid/CMakeLists.txt')
-rw-r--r-- | kstyles/asteroid/CMakeLists.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/kstyles/asteroid/CMakeLists.txt b/kstyles/asteroid/CMakeLists.txt new file mode 100644 index 000000000..264a16085 --- /dev/null +++ b/kstyles/asteroid/CMakeLists.txt @@ -0,0 +1,46 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + -DQT_PLUGIN +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdefx + ${CMAKE_SOURCE_DIR}/kdecore +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES asteroid.themerc DESTINATION ${DATA_INSTALL_DIR}/kstyle/themes ) + + +##### asteroid ################################### + +set( target asteroid ) + +set( ${target}_SRCS + asteroid.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK kdefx-shared + DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles +) |