
- Deprecate os_compare_and_swap and replace with more portable compare_and_swap - Fixed a bug where the wrong image would be drawn
11 lines
No EOL
363 B
Batchfile
11 lines
No EOL
363 B
Batchfile
@echo off
|
|
if exist build (
|
|
rmdir /s /q build
|
|
)
|
|
mkdir build
|
|
|
|
pushd build
|
|
|
|
clang -g -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 -lwinmm -ld3d11 -ldxguid -ld3dcompiler -lshlwapi -femit-all-decls
|
|
|
|
popd |