mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add batch file for creating solutions
This commit is contained in:
parent
8dbc2024c6
commit
7419170b63
13
CreateSolution.bat
Normal file
13
CreateSolution.bat
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
@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.
|
Loading…
x
Reference in New Issue
Block a user