diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-01 10:36:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-16 20:53:31 +0900 |
commit | 394069e6de4326fd15a603fd0598d2de0c3342cd (patch) | |
tree | 4d4ab27dd03e368ac479271e707550457d7205e4 /src/imageplugins/oilpaint/CMakeLists.txt | |
parent | 67fd8bef19878c6940d48fbdafe07a8842c99fd1 (diff) | |
download | digikam-feat/cmake-conversion.tar.gz digikam-feat/cmake-conversion.zip |
Conversion to cmake building systemfeat/cmake-conversion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/imageplugins/oilpaint/CMakeLists.txt')
-rw-r--r-- | src/imageplugins/oilpaint/CMakeLists.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/imageplugins/oilpaint/CMakeLists.txt b/src/imageplugins/oilpaint/CMakeLists.txt new file mode 100644 index 00000000..6fcb06d0 --- /dev/null +++ b/src/imageplugins/oilpaint/CMakeLists.txt @@ -0,0 +1,26 @@ +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_BINARY_DIR} +) + + +##### digikamimageplugin_oilpaint (kpart) + +tde_add_kpart( digikamimageplugin_oilpaint AUTOMOC + SOURCES imageplugin_oilpaint.cpp oilpainttool.cpp oilpaint.cpp + LINK dimgfilters-static digikam-shared tdecore-shared tdeutils-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other files + +install( + FILES digikamimageplugin_oilpaint_ui.rc + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) + +tde_create_translated_desktop( + SOURCE digikamimageplugin_oilpaint.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) |