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

This should fix NASM installation.
References:
- https://github.com/facebookincubator/create-react-app/pull/1868
- d9d9fe46c5
7 lines
272 B
Batchfile
7 lines
272 B
Batchfile
@ECHO OFF
|
|
IF "%PLATFORM%" == "x64" (
|
|
cmake . -G "Visual Studio 14 2015 Win64" -DCMAKE_GENERATOR_TOOLSET=v140_xp -DENABLE_JPEG=ON -DBUILD_TESTING=ON
|
|
) ELSE (
|
|
cmake . -G "Visual Studio 14 2015" -DCMAKE_GENERATOR_TOOLSET=v140_xp -DENABLE_JPEG=ON -DBUILD_TESTING=ON
|
|
)
|