mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
14 lines
232 B
Batchfile
14 lines
232 B
Batchfile
|
@echo off
|
||
|
set CMAKE_GENERATOR=Visual Studio 16 2019
|
||
|
set BUILDDIR=build_intermediate
|
||
|
|
||
|
if not exist "%BUILDDIR%" (
|
||
|
mkdir "%BUILDDIR%"
|
||
|
)
|
||
|
|
||
|
cd "%BUILDDIR%"
|
||
|
cmake .. -G"%CMAKE_GENERATOR%"
|
||
|
cd ..
|
||
|
|
||
|
echo Finished generating solution files.
|