9 lines
No EOL
230 B
Batchfile
9 lines
No EOL
230 B
Batchfile
@echo off
|
|
rmdir /S /Q build
|
|
mkdir build
|
|
|
|
pushd build
|
|
|
|
clang -g -o cgame.exe ../build.c -O0 -DDEBUG -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -lgdi32 -luser32 -lopengl32
|
|
|
|
popd |