rom-properties/appveyor.cmd
David Korth 8e3dfc2e23 appveyor.yml: Disable NASM and JPEG, again.
`appveyor DownloadFile` is triggering CMake for some reason, regardless
of the comments. I'm not sure what to do here.
2017-03-21 20:26:23 -04:00

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
)