vcpkg/ports/brotli/fix-ios.patch
Jesse Towner b5e6d68c20
[brotli] add iOS support (#16397)
* [brotli] add iOS support

This commit adds support for iOS by modifying the CMakeLists.txt
file to specify the BUNDLE DESTINATION parameter during install,
which is required for iOS builds.

* [brotli] update control file

* [brotli] update versions
2021-02-26 13:15:50 -08:00

13 lines
307 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index fcd9024..a717b87 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -225,6 +225,7 @@ if(NOT BROTLI_BUNDLED_MODE)
install(
TARGETS brotli
RUNTIME DESTINATION tools/brotli
+ BUNDLE DESTINATION tools/brotli
CONFIGURATIONS Release
)