From 284047b761bd61e3c0518b0be235aa77172b1010 Mon Sep 17 00:00:00 2001 From: Zeex Date: Wed, 17 Mar 2021 10:14:28 +0600 Subject: Make AppVeyor actually build 64-bit binaries in x64 configuration --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index a941dfc..c159d83 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,8 +11,10 @@ environment: install: - choco install -y yasm before_build: - - cmake . + - if %PLATFORM% == x86 set BUILD_ARCH=Win32 + - if %PLATFORM% == x64 set BUILD_ARCH=x64 + - cmake . -A %BUILD_ARCH% build_script: - cmake --build . --config %CONFIGURATION% test_script: - - ctest --build-config %CONFIGURATION% \ No newline at end of file + - ctest --build-config %CONFIGURATION% -- cgit v1.1