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

It was enabled by default on AppVeyor, but now we're explicit. This should reduce build times slightly on the Ubuntu PPA servers and travis-ci.
8 lines
355 B
Batchfile
8 lines
355 B
Batchfile
@ECHO OFF
|
|
cmake --version
|
|
IF "%PLATFORM%" == "x64" (
|
|
cmake . -G "Visual Studio 12 2013 Win64" -DCMAKE_GENERATOR_TOOLSET=v120_xp -DENABLE_JPEG=ON -DBUILD_TESTING=ON -DENABLE_LTO=OFF -DENABLE_PCH=ON
|
|
) ELSE (
|
|
cmake . -G "Visual Studio 12 2013" -DCMAKE_GENERATOR_TOOLSET=v120_xp -DENABLE_JPEG=ON -DBUILD_TESTING=ON -DENABLE_LTO=OFF -DENABLE_PCH=ON
|
|
)
|