]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
appveyor: always use cmake `-A` option to select x64
authorViktor Szakats <commit@vsz.me>
Tue, 7 Jan 2025 23:04:20 +0000 (00:04 +0100)
committerViktor Szakats <commit@vsz.me>
Tue, 7 Jan 2025 23:33:02 +0000 (00:33 +0100)
The `Win64` generator suffix alternative was required by old CMake
versions (<3.1) only:
https://cmake.org/cmake/help/v3.22/generator/Visual%20Studio%2010%202010.html

Closes #15935

appveyor.yml

index ae0fe5804294b540380914b07b2440fd560dc15d..b68ffc34db77b39c84accb93c9cd881dd816be3c 100644 (file)
@@ -84,7 +84,8 @@ environment:
     - job_name: 'CMake, VS2010, Debug, x64, Schannel, Static, Build-tests & examples'
       APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
       BUILD_SYSTEM: CMake
-      PRJ_GEN: 'Visual Studio 10 2010 Win64'
+      PRJ_GEN: 'Visual Studio 10 2010'
+      TARGET: '-A x64'
       PRJ_CFG: Debug
       SCHANNEL: 'ON'
       ENABLE_UNICODE: 'OFF'