Browse Source

[Conan][docs] fix examples of using our prebuilt binaries for macOS/iOS

Andrey Filipenkov 2 năm trước cách đây
mục cha
commit
9d3ad51de4
1 tập tin đã thay đổi với 4 bổ sung2 xóa
  1. 4 2
      docs/conan.md

+ 4 - 2
docs/conan.md

@@ -85,7 +85,8 @@ conan install . \
   --no-imports \
   --no-imports \
   --build=never \
   --build=never \
   --profile:build=default \
   --profile:build=default \
-  --profile:host=CI/conan/macos-intel
+  --profile:host=CI/conan/macos-intel \
+  -o with_apple_system_libs=True
 
 
 cmake -S . -B build -G Xcode \
 cmake -S . -B build -G Xcode \
   --toolchain conan-generated/conan_toolchain.cmake
   --toolchain conan-generated/conan_toolchain.cmake
@@ -116,7 +117,8 @@ conan install . \
   --no-imports \
   --no-imports \
   --build=never \
   --build=never \
   --profile:build=default \
   --profile:build=default \
-  --profile:host=CI/conan/ios-arm64
+  --profile:host=CI/conan/ios-arm64 \
+  -o with_apple_system_libs=True
 
 
 cmake --preset ios-conan
 cmake --preset ios-conan
 ```
 ```