-
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.
* https://github.com/koordinates/vcpkg/tree/kx-20230421 * fix_vendor_libs: add newly used (libpq) system lib wldap32.dll * proj: fix windows build issue
- Loading branch information
Showing
13 changed files
with
91 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cffi==1.15.1 | ||
cryptography==39.0.1 | ||
gdal==3.6.2 | ||
gdal==3.6.3 | ||
psycopg2==2.8.5 | ||
pygit2==1.9.0 | ||
pyodbc==4.0.32 | ||
|
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
from 41ea03 to 1e2a0f
6 changes: 6 additions & 0 deletions
6
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if(GDAL_USE_WEBP) | ||
find_package(WebP CONFIG REQUIRED) | ||
add_library(WEBP::WebP ALIAS WebP::webp) | ||
set(GDAL_CHECK_PACKAGE_WebP_NAMES WebP CACHE INTERNAL "vcpkg") | ||
set(GDAL_CHECK_PACKAGE_WebP_TARGETS WebP::webp CACHE INTERNAL "vcpkg") | ||
endif() |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
diff --git a/cmake/modules/packages/FindLibKML.cmake b/cmake/modules/packages/FindLibKML.cmake | ||
index 9418247..589b83d 100644 | ||
--- a/cmake/modules/packages/FindLibKML.cmake | ||
+++ b/cmake/modules/packages/FindLibKML.cmake | ||
@@ -56,6 +56,8 @@ find_library(LIBKML_BASE_LIBRARY | ||
HINTS ${PC_LIBKML_LIBRARY_DIRS} ) | ||
mark_as_advanced(LIBKML_BASE_LIBRARY) | ||
|
||
+cmake_policy(PUSH) | ||
+cmake_policy(SET CMP0057 NEW) | ||
set(libkml_known_components DOM CONVENIENCE ENGINE REGIONATOR) | ||
foreach(_comp IN LISTS libkml_known_components) | ||
if(${_comp} IN_LIST LibKML_FIND_COMPONENTS) | ||
@@ -99,21 +101,20 @@ find_package_handle_standard_args(LibKML | ||
if(LIBKML_FOUND) | ||
set(LIBKML_INCLUDE_DIRS "${LIBKML_INCLUDE_DIR}") | ||
set(LIBKML_LIBRARIES "${LIBKML_BASE_LIBRARY}") | ||
+ find_package(LibKML CONFIG REQUIRED) | ||
if(NOT TARGET LIBKML::LibKML) | ||
- add_library(LIBKML::LibKML UNKNOWN IMPORTED) | ||
+ add_library(LIBKML::LibKML INTERFACE IMPORTED) | ||
set_target_properties(LIBKML::LibKML PROPERTIES | ||
- INTERFACE_INCLUDE_DIRECTORIES "${LIBKML_INCLUDE_DIR}" | ||
- IMPORTED_LINK_INTERFACE_LANGUAGES "C++" | ||
- IMPORTED_LOCATION "${LIBKML_BASE_LIBRARY}") | ||
+ INTERFACE_LINK_LIBRARIES kmlbase) | ||
endif() | ||
foreach(_comp IN LISTS libkml_known_components) | ||
if(${_comp} IN_LIST LibKML_FIND_COMPONENTS) | ||
+ string(TOLOWER ${_comp} _name) | ||
list(APPEND LIBKML_LIBRARIES "${LIBKML_${_comp}_LIBRARY}") | ||
if(NOT TARGET LIBKML::${_comp}) | ||
- add_library(LIBKML::${_comp} UNKNOWN IMPORTED) | ||
+ add_library(LIBKML::${_comp} INTERFACE IMPORTED) | ||
set_target_properties(LIBKML::${_comp} PROPERTIES | ||
- IMPORTED_LINK_INTERFACE_LANGUAGES "C++" | ||
- IMPORTED_LOCATION "${LIBKML_${_comp}_LIBRARY}") | ||
+ INTERFACE_LINK_LIBRARIES kml${_name}) | ||
endif() | ||
endif() | ||
endforeach() | ||
@@ -129,3 +130,4 @@ if(LIBKML_FOUND) | ||
endif() | ||
endforeach() | ||
endif() | ||
+cmake_policy(POP) |
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