diff options
author | Michele Calgaro <[email protected]> | 2024-12-01 10:36:36 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-12-26 16:54:50 +0900 |
commit | 86d7f0e20a9cb6688aaa1fef0545702e27c9ed56 (patch) | |
tree | 62cf48ae5744c0212108f8a8c0c777645125cdc4 /src/CMakeLists.txt | |
parent | d0df28617a0a44cb207262de6b365ab2674e683d (diff) | |
download | digikam-86d7f0e20a9cb6688aaa1fef0545702e27c9ed56.tar.gz digikam-86d7f0e20a9cb6688aaa1fef0545702e27c9ed56.zip |
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 76a8e935be38afad0105c46d5a2aa7b58162223b)
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 00000000..e46f42ff --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,36 @@ +include_directories( + ${CMAKE_SOURCE_DIR}/src/digikam + ${CMAKE_SOURCE_DIR}/src/libs/dimg + ${CMAKE_SOURCE_DIR}/src/libs/dmetadata + ${CMAKE_SOURCE_DIR}/src/libs/histogram + ${CMAKE_BINARY_DIR} + ${KDCRAW_INCLUDE_DIRS} + ${KEXIV2_INCLUDE_DIRS} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR} +) + + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### subfolders + +add_subdirectory( libs ) +add_subdirectory( utilities ) +add_subdirectory( digikam ) +add_subdirectory( showfoto ) +add_subdirectory( tdeioslave ) +add_subdirectory( themedesigner ) +add_subdirectory( imageplugins ) + + +##### other files + +install( + FILES tips + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) |