
- Fix d3d11 Input assembler not being created correctly bug - Fix framerate being locked by swap chain present - Move enable_vsync to window - sqrt & rsqrt simd - Add release build & run in vscode tasks & launch - Cleanup
11 lines
No EOL
350 B
Batchfile
11 lines
No EOL
350 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 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -Wno-deprecated-declarations -lkernel32 -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler -lshlwapi
|
|
|
|
popd |