mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00

`appveyor DownloadFile` is triggering CMake for some reason, regardless of the comments. I'm not sure what to do here.
7 lines
274 B
Batchfile
7 lines
274 B
Batchfile
@ECHO OFF
|
|
IF "%PLATFORM%" == "x64" (
|
|
cmake . -G "Visual Studio 14 2015 Win64" -DCMAKE_GENERATOR_TOOLSET=v140_xp -DENABLE_JPEG=OFF -DBUILD_TESTING=ON
|
|
) ELSE (
|
|
cmake . -G "Visual Studio 14 2015" -DCMAKE_GENERATOR_TOOLSET=v140_xp -DENABLE_JPEG=OFF -DBUILD_TESTING=ON
|
|
)
|