Files
itgmania212121/Utils/build-release-windows.bat
T

8 lines
412 B
Batchfile
Raw Normal View History

2022-06-06 23:40:27 +02:00
cd %~dp0..
2022-06-11 13:43:03 +02:00
cmake -B Build\release -DWITH_FULL_RELEASE=On -DWITH_CLUB_FANTASTIC=On || exit /b
2022-06-06 23:40:27 +02:00
cmake --build Build\release --config Release -j %NUMBER_OF_PROCESSORS% || exit /b
cmake --build Build\release --config Release --target package || exit /b
2022-06-11 13:43:03 +02:00
cmake -B Build\release -DWITH_FULL_RELEASE=On -DWITH_CLUB_FANTASTIC=Off || exit /b
cmake --build Build\release --config Release --target package || exit /b