diff options
author | gregory guy <[email protected]> | 2018-11-02 14:14:58 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-11-04 16:27:41 +0100 |
commit | 8779bda49a91ece85e777aea1e6c5519b62ef66b (patch) | |
tree | d89bbbd73092ab4d2963e2b3c536a9bdf65ebdc8 /src/CMakeLists.txt | |
parent | 0438f7a744dc2f091d580e0b1eba143e7da8966d (diff) | |
download | tdmtheme-8779bda49a91ece85e777aea1e6c5519b62ef66b.tar.gz tdmtheme-8779bda49a91ece85e777aea1e6c5519b62ef66b.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit 4beda4d40464b0bb88c7fa4dc217958708bcc1c7)
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..9ac43d7 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,35 @@ +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_LIB_DIR} +) + + +##### kcm_tdmtheme (kpart) + +tde_add_kpart( kcm_tdmtheme AUTOMOC + + SOURCES + tdmtheme.cpp + LINK + tdeio-shared + tdeui-shared + tdecore-shared + + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) |