This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/build.bat

9 lines
170 B
Batchfile
Raw Normal View History

@echo off
rmdir /S /Q build
mkdir build
pushd build
cl.exe /Fe:cgame.exe ..\build.c /Od /std:c11 /W4 /wd4273 /wd4018 /wd4100 /Zi gdi32.lib user32.lib opengl32.lib
2024-06-27 18:04:21 +07:00
popd