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

11 lines
301 B
Batchfile
Raw Normal View History

@echo off
2024-07-02 10:56:00 +07:00
if exist build (
rmdir /s /q build
)
mkdir build
pushd build
2024-07-02 10:56:00 +07:00
clang -g -o cgame.exe ../build.c -O0 -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler
2024-06-27 18:04:21 +07:00
popd