vcpkg/ports/libzip/fix-dependency.patch
chausner c093bbe39a
[libzip] Update to 1.8.0 (#21407)
* Update libzip to 1.8.0

* Update CI baseline

Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-11-16 16:46:54 -08:00

28 lines
745 B
Diff

diff --git a/libzip-config.cmake.in b/libzip-config.cmake.in
index 5b9aa55..0723f3c 100644
--- a/libzip-config.cmake.in
+++ b/libzip-config.cmake.in
@@ -1,8 +1,20 @@
@PACKAGE_INIT@
# only needed for static library, and doesn't work as-is
-#include(CMakeFindDependencyMacro)
-#find_dependency(ZLIB::ZLIB)
+include(CMakeFindDependencyMacro)
+if(@ENABLE_BZIP2@)
+ find_dependency(BZip2)
+endif()
+if(@ENABLE_LZMA@)
+ find_dependency(LibLZMA)
+endif()
+if(@ENABLE_ZSTD@)
+ find_dependency(Zstd)
+endif()
+if(@ENABLE_OPENSSL@)
+ find_dependency(OpenSSL)
+endif()
+find_dependency(ZLIB)
# how to handle the optional dependencies?
# Provide all our library targets to users.
include("${CMAKE_CURRENT_LIST_DIR}/libzip-targets.cmake")