diff options
Diffstat (limited to 'style/CMakeLists.txt')
-rw-r--r-- | style/CMakeLists.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/style/CMakeLists.txt b/style/CMakeLists.txt new file mode 100644 index 0000000..b08e7e6 --- /dev/null +++ b/style/CMakeLists.txt @@ -0,0 +1,45 @@ +add_subdirectory( config ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIBRARY_DIRS} +) + + +##### lipstik (kpart) + +tde_add_kpart( lipstik AUTOMOC + + SOURCES + lipstik.cpp + misc.cpp + LINK + tdecore-shared + + DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles +) + + +##### other data + +install( + FILES lipstik.themerc + DESTINATION ${DATA_INSTALL_DIR}/tdestyle/themes +) + +install( + FILES + lipstikstandard.kcsrc + lipstikwhite.kcsrc + lipstiknoble.kcsrc + + DESTINATION ${DATA_INSTALL_DIR}/tdedisplay/color-schemes +) |