appveyor.cmd: Assume MSVC 2013 if %compiler% isn't set.

TODO: Restore MinGW-w64 support?
This commit is contained in:
David Korth 2024-04-27 00:05:20 -04:00
parent 17bf805ee3
commit 36324703d8

View File

@ -1,6 +1,9 @@
@ECHO OFF
cmake --version
:: FIXME: Restore MinGW-w64 support?
set compiler=msvc2013
if "%compiler%" == "msvc2013" goto :msvc2013
if "%compiler%" == "mingw-w64" goto :mingw-w64
echo *** ERROR: Unsupported compiler '%compiler%'.