From 959b26309319a199cf70fe362d360d11fe38b19a Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Thu, 31 Dec 2020 19:43:02 +0000 Subject: [PATCH] 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 * - * + --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index ac6ef7c1a..b4c18f32f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 #