Fixed ARM UWP Build with Visual Studio 2017 (#287)

* Fixed ARM UWP build configuration (Tested with VS2017)
This commit is contained in:
Luca Montanari 2018-09-05 14:21:31 +02:00 committed by Aliaksei Levin
parent 6129ebf394
commit 5c4cdf699b

View File

@ -9,7 +9,7 @@ $ErrorActionPreference = "Stop"
$vcpkg_root = Resolve-Path $vcpkg_root
$vcpkg_cmake="${vcpkg_root}\scripts\buildsystems\vcpkg.cmake"
$arch_list = @( "x86", "x64", "arm" )
$arch_list = @( "x86", "x64", "ARM" )
if ($arch) {
$arch_list = @(, $arch)
}