runcmake_win.bat 287 Bytes
Newer Older
TheNumbat's avatar
TheNumbat committed
1
2
@echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" > NUL 2> NUL
Nick Sharp's avatar
Nick Sharp committed
3
mkdir build
TheNumbat's avatar
TheNumbat committed
4
pushd build
Nick Sharp's avatar
Nick Sharp committed
5
cmake ..
TheNumbat's avatar
TheNumbat committed
6
7
8
9
if "%1"=="configure" exit
if [%1]==[] (cmake --build . --config RelWithDebInfo)
if not [%1]==[] (cmake --build . --config %1)
popd