Files
handmade-hero/misc/build.bat
2024-07-09 22:15:52 +01:00

12 lines
219 B
Batchfile

@echo off
if NOT EXIST .\build mkdir .\build
pushd .\build
pwd
cl -FC -Zi -Fe:handmade.exe ..\src\win32_handmade.cpp user32.lib Gdi32.lib
popd
exit /b
:error
echo Failed with error #%errorlevel%.
exit /b %errorlevel%