Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
22 lines
827 B
Diff
22 lines
827 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 298cdca..8894db3 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -55,7 +55,15 @@ endif()
|
|
qt_standard_project_setup()
|
|
|
|
find_package(OpenSSL REQUIRED)
|
|
-find_package(lcms2 REQUIRED)
|
|
+SET(LCMS2_NAMES ${LCMS2_NAMES} lcms2 liblcms2 liblcms2_static)
|
|
+FIND_LIBRARY(LCMS2_LIBRARY NAMES ${LCMS2_NAMES} )
|
|
+FIND_PATH(LCMS2_INCLUDE_DIR lcms2.h)
|
|
+add_library(lcms2::lcms2 UNKNOWN IMPORTED)
|
|
+set_target_properties(lcms2::lcms2 PROPERTIES
|
|
+ IMPORTED_LOCATION ${LCMS2_LIBRARY}
|
|
+ INTERFACE_INCLUDE_DIRECTORIES ${LCMS2_INCLUDE_DIR}
|
|
+ INTERFACE_COMPILE_DEFINITIONS "HAVE_LCMS2=1;CMS_NO_REGISTER_KEYWORD=1")
|
|
+set_property(GLOBAL APPEND PROPERTY INTERNAL_DEPS_PROP lcms2::lcms2)
|
|
find_package(ZLIB REQUIRED)
|
|
find_package(Freetype REQUIRED)
|
|
find_package(OpenJPEG CONFIG REQUIRED)
|