diff options
author | gregory guy <[email protected]> | 2020-06-13 16:55:00 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-06-21 15:36:20 +0200 |
commit | 0b2288da16894d45e95caf5c0f1f5cba3f17c2dd (patch) | |
tree | 7dc6943b6af7edd7500456aaa813d79c8f09c88b /misc | |
parent | 88aa431c9d79bad942de04f4b28954b428079fd1 (diff) | |
download | codeine-0b2288da16894d45e95caf5c0f1f5cba3f17c2dd.tar.gz codeine-0b2288da16894d45e95caf5c0f1f5cba3f17c2dd.zip |
Conversion to the cmake building system.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/CMakeLists.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt new file mode 100644 index 0000000..30786a7 --- /dev/null +++ b/misc/CMakeLists.txt @@ -0,0 +1,31 @@ +##### icons + +tde_install_icons( ${PROJECT_NAME} ) + + +##### other data + +install( + FILES ${PROJECT_NAME}ui.rc + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) + +install( + FILES ${PROJECT_NAME}rc + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + +install( + FILES ${PROJECT_NAME}_part.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + +install( + FILES ${PROJECT_NAME}_play_dvd.desktop + DESTINATION ${DATA_INSTALL_DIR}/konqueror/servicemenus +) |