-
Notifications
You must be signed in to change notification settings - Fork 41
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 #995 from koordinates/rc-vcpkg-2024.04.26
git 2.45.1 and vcpkg 2024.04.26
- Loading branch information
Showing
14 changed files
with
143 additions
and
42 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
Submodule vcpkg
updated
4315 files
7 changes: 7 additions & 0 deletions
7
vcpkg-vendor/vcpkg-overlay-ports/gdal/cmake-project-include.cmake
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
21 changes: 21 additions & 0 deletions
21
vcpkg-vendor/vcpkg-overlay-ports/gdal/target-is-valid.patch
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/cmake/helpers/CheckDependentLibraries.cmake b/cmake/helpers/CheckDependentLibraries.cmake | ||
index f5c920a..53494c9 100644 | ||
--- a/cmake/helpers/CheckDependentLibraries.cmake | ||
+++ b/cmake/helpers/CheckDependentLibraries.cmake | ||
@@ -41,6 +41,7 @@ endif() | ||
# https://github.com/OSGeo/gdal/issues/5324 | ||
function (gdal_check_target_is_valid target res_var) | ||
get_target_property(_interface_include_directories ${target} "INTERFACE_INCLUDE_DIRECTORIES") | ||
+ get_target_property(_type ${target} "TYPE") | ||
if(_interface_include_directories) | ||
foreach(_dir IN LISTS _interface_include_directories) | ||
if(NOT EXISTS "${_dir}") | ||
@@ -54,7 +55,7 @@ function (gdal_check_target_is_valid target res_var) | ||
# property, but a GeoTIFF_INCLUDE_DIRS variable. | ||
set_target_properties(${target} PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${GeoTIFF_INCLUDE_DIRS}") | ||
- else() | ||
+ elseif(NOT _type STREQUAL "INTERFACE" AND _type STREQUAL "ALIAS") | ||
message(WARNING "Target ${target} has no INTERFACE_INCLUDE_DIRECTORIES property. Ignoring that target.") | ||
set(${res_var} FALSE PARENT_SCOPE) | ||
return() |
Oops, something went wrong.