diff options
author | gregory guy <[email protected]> | 2019-03-19 19:07:39 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-03-31 16:33:17 +0200 |
commit | 26ee115d569391bac2c6e2b4772ccb3de012ecdd (patch) | |
tree | 8ea94c51288a1f967d1ef5b02ae114edfeb71e78 /style/CMakeLists.txt | |
parent | b850117f2d199a02a9ae498d2ffaa23742f9c2a7 (diff) | |
download | tde-style-lipstik-26ee115d569391bac2c6e2b4772ccb3de012ecdd.tar.gz tde-style-lipstik-26ee115d569391bac2c6e2b4772ccb3de012ecdd.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit e7c75e712197761e6b8ac4ab59b88ef9a1896eae)
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 +) |