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

10 lines
422 B
Batchfile
Raw Permalink Normal View History

@echo off
2024-08-23 14:16:21 +02:00
if not exist build (
mkdir build
2024-07-04 09:21:39 +07:00
)
pushd build
2024-08-21 20:17:05 +02:00
clang -g -fuse-ld=lld -o cgame.exe ../build.c -O0 -std=c11 -D_CRT_SECURE_NO_WARNINGS -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lkernel32 -lgdi32 -luser32 -lruntimeobject -lwinmm -ld3d11 -ldxguid -ld3dcompiler -lshlwapi -lole32 -lshcore -lavrt -lksuser -ldbghelp -femit-all-decls
2024-06-27 18:04:21 +07:00
popd