aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPhoebe <925731795@qq.com>2019-11-20 03:02:13 +0800
committerRobert Schumacher <roschuma@microsoft.com>2019-11-19 11:02:13 -0800
commit9d1048e612a115a3982f91e6f341abefcb02d726 (patch)
treec874c42ba5bd3474ab3743a639774d47a43e5e1f /scripts
parentf192c0f8bf0398d064d63f49c272a8e01acb27f8 (diff)
downloadvcpkg-9d1048e612a115a3982f91e6f341abefcb02d726.tar.gz
vcpkg-9d1048e612a115a3982f91e6f341abefcb02d726.zip
[libusb] upgrade and support arm64 (#8976)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/vcpkg_install_msbuild.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/cmake/vcpkg_install_msbuild.cmake b/scripts/cmake/vcpkg_install_msbuild.cmake
index 7c2fdd836..db2874a9f 100644
--- a/scripts/cmake/vcpkg_install_msbuild.cmake
+++ b/scripts/cmake/vcpkg_install_msbuild.cmake
@@ -113,6 +113,8 @@ function(vcpkg_install_msbuild)
set(_csc_PLATFORM Win32)
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL ARM)
set(_csc_PLATFORM ARM)
+ elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL arm64)
+ set(_csc_PLATFORM arm64)
else()
message(FATAL_ERROR "Unsupported target architecture")
endif()