mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00
7 lines
204 B
Batchfile
7 lines
204 B
Batchfile
@ECHO OFF
|
|
IF "%PLATFORM%" == "x64" (
|
|
cmake . -G "Visual Studio 14 2015 Win64" -DENABLE_JPEG=ON -DBUILD_TESTING=ON
|
|
) ELSE (
|
|
cmake . -G "Visual Studio 14 2015" -DENABLE_JPEG=ON -DBUILD_TESTING=ON
|
|
)
|