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_release_clang.bat

13 lines
241 B
Batchfile
Raw Normal View History

@echo off
rmdir /S /Q build
mkdir build
pushd build
mkdir release
pushd release
2024-06-29 01:18:22 +02:00
clang -o cgame.exe ../../build.c -Ofast -DRELEASE -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter
popd
popd