1
0
Fork 0

Fix AppVeyor IA32 builds (#5096)

* Fix AppVeyor IA32 builds

> The default target platform name (architecture) is that of the host and is provided in the CMAKE_VS_PLATFORM_NAME_DEFAULT variable.

AppVeyor uses AMD64. Oops.

* del cmakecache

* -

* +
This commit is contained in:
Tiger Wang 2020-12-31 19:43:02 +00:00 committed by GitHub
parent 90ce4ed2b8
commit 959b263093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ for:
- job_name: Windows-x86
before_build:
- cmake -G "Visual Studio 16 2019" ..
- cmake -G "Visual Studio 16 2019" -A "Win32" ..
################################
# Windows 64-bit release build #