summaryrefslogtreecommitdiffstats
path: root/scripts/build-win32-debug.bat
blob: 2f930f49e6390f1c43f52c850efcd96ebe2429d2 (plain)
1
2
3
4
5
6
7
@echo off
cd /D "%~dp0\.."
cmake -B build\win32 -A Win32
if %errorlevel% neq 0 exit /b %errorlevel%
cmake --build build\win32 --config Debug --parallel
if %errorlevel% neq 0 exit /b %errorlevel%
if /I %0 EQU "%~dpnx0" pause