aboutsummaryrefslogtreecommitdiff
path: root/scripts/buildsystems
diff options
context:
space:
mode:
authorAlexander Neumann <30894796+Neumann-A@users.noreply.github.com>2020-01-24 21:26:35 +0100
committerVictor Romero <romerosanchezv@gmail.com>2020-01-24 12:26:35 -0800
commited0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74 (patch)
tree58e21e44c70b6b725a4e9cc85d7d25a71b92a5b0 /scripts/buildsystems
parent8c77506c4fc47c3ea4790d30fc78c45265b3e41a (diff)
downloadvcpkg-ed0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74.tar.gz
vcpkg-ed0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74.zip
Make VS 2019 default to x64 (#9816)
Since CMake also does this
Diffstat (limited to 'scripts/buildsystems')
-rw-r--r--scripts/buildsystems/vcpkg.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildsystems/vcpkg.cmake b/scripts/buildsystems/vcpkg.cmake
index e549f3fa1..5b596cba2 100644
--- a/scripts/buildsystems/vcpkg.cmake
+++ b/scripts/buildsystems/vcpkg.cmake
@@ -67,7 +67,7 @@ else()
elseif(CMAKE_GENERATOR MATCHES "^Visual Studio 15 2017$")
set(_VCPKG_TARGET_TRIPLET_ARCH x86)
elseif(CMAKE_GENERATOR MATCHES "^Visual Studio 16 2019$")
- set(_VCPKG_TARGET_TRIPLET_ARCH x86)
+ set(_VCPKG_TARGET_TRIPLET_ARCH x64)
else()
find_program(_VCPKG_CL cl)
if(_VCPKG_CL MATCHES "amd64/cl.exe$" OR _VCPKG_CL MATCHES "x64/cl.exe$")