mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 14:59:05 +08:00
b5e6d68c20
* [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
13 lines
307 B
Diff
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
|
|
)
|
|
|