Make sure to append .exe, or else nothing works...

This commit is contained in:
ThePhD 2017-12-26 17:27:22 -05:00
parent a409acd9ce
commit c887f7bf43

View File

@ -86,6 +86,8 @@ init:
- cd "%top_level%"
# configure the generator appropriately
- set arch=
- set parallelism=
- set logger=
- if "%PLATFORM%"=="x64" (set arch= Win64)
- echo %APPVEYOR_BUILD_WORKER_IMAGE%
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (set CMAKE_GENERATOR=Visual Studio 15 2017%arch%&&set parallelism=/maxcpucount&&set logger=/logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll")
@ -97,9 +99,9 @@ init:
# print out useful information
- ninja --version
- cmake --version
- if DEFINED LLVM_VERSION (clang-cl -v)
- if DEFINED MINGW_VERSION (g++ --version)
- echo cmake generator is %CMAKE_GENERATOR%
- if DEFINED LLVM_VERSION (clang-cl.exe -v)
- if DEFINED MINGW_VERSION (g++.exe --version)
- echo cmake generator is `%CMAKE_GENERATOR%` using special flags logger=`%logger%` parallelism=`%parallelism%`
# We need to use CMAKE_BUILD_TYPE=Release since there are no "configuration"
# toolsets for Ninja or Makefiles as far as cmake is concerned, so