-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from jdpurcell/pr-update673
Qt 6.7.3 and other updates
- Loading branch information
Showing
8 changed files
with
70 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
--- kimageformats/CMakeLists.txt 2023-08-05 16:14:58 | ||
+++ CMakeLists.txt 2023-08-05 16:14:49 | ||
@@ -74,11 +74,15 @@ | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -74,11 +74,13 @@ | ||
add_feature_info(LibJXL LibJXL_FOUND "required for the QImage plugin for JPEG XL images") | ||
|
||
# note: module FindLibRaw missing from https://invent.kde.org/frameworks/extra-cmake-modules | ||
-find_package(LibRaw 0.20.2) | ||
-set_package_properties(LibRaw PROPERTIES | ||
+find_package(libraw CONFIG) | ||
+get_property(importTargetsAfter DIRECTORY "${CMAKE_SOURCE_DIR}" PROPERTY IMPORTED_TARGETS) | ||
+set_package_properties(libraw PROPERTIES | ||
+find_package(LibRaw 0.20.2 NAMES libraw) | ||
set_package_properties(LibRaw PROPERTIES | ||
TYPE OPTIONAL | ||
PURPOSE "Required for the QImage plugin for RAW images" | ||
) | ||
+# Adapt naming so the rest of the cmake infra finds this new target | ||
+add_library(LibRaw::LibRaw ALIAS libraw::raw) | ||
+set(LibRaw_FOUND ${libraw_FOUND}) | ||
|
||
ecm_set_disabled_deprecation_versions( | ||
QT 5.15.2 |