Files
handmade-hero/misc/build.bat
2024-07-07 22:50:24 +01:00

12 lines
170 B
Batchfile

@echo off
mkdir .\build
pushd .\build
pwd
cl -FC -Zi ..\src\main.cpp user32.lib Gdi32.lib
popd
exit /b
:error
echo Failed with error #%errorlevel%.
exit /b %errorlevel%