File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ cd `dirname $0`/../..
2323
2424if [[ $ARCH == " x86_64" ]]; then
2525 export VCPKG_TRIPLET=x64-osx
26- cp -f x64-osx.cmake vcpkg/triplets/x64-osx.cmake
26+ cp -f vcpkg-triplets/ x64-osx.cmake vcpkg/triplets/x64-osx.cmake
2727elif [[ $ARCH == " arm64" ]]; then
2828 export VCPKG_TRIPLET=arm64-osx
29- cp -f arm64-osx.cmake vcpkg/triplets/community/arm64-osx.cmake
29+ cp -f vcpkg-triplets/ arm64-osx.cmake vcpkg/triplets/community/arm64-osx.cmake
3030else
3131 echo " Invalid ARCH: $ARCH "
3232 exit 1
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ set(VCPKG_LIBRARY_LINKAGE static)
55set (VCPKG_CMAKE_SYSTEM_NAME Darwin)
66set (VCPKG_OSX_ARCHITECTURES arm64)
77set (VCPKG_OSX_DEPLOYMENT_TARGET 13.7)
8+
9+ set (VCPKG_BUILD_TYPE release)
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ set(VCPKG_LIBRARY_LINKAGE static)
55set (VCPKG_CMAKE_SYSTEM_NAME Darwin)
66set (VCPKG_OSX_ARCHITECTURES x86_64)
77set (VCPKG_OSX_DEPLOYMENT_TARGET 13.7)
8+
9+ set (VCPKG_BUILD_TYPE release)
You can’t perform that action at this time.
0 commit comments