This commit is contained in:
2026-02-24 15:58:17 +01:00
parent d6d7ed02bb
commit 497e218eb9
10 changed files with 105 additions and 57 deletions
+7
View File
@@ -0,0 +1,7 @@
clang++ -c src/*.cpp -O3 -ffast-math -I/opt/homebrew/include -Iinclude/
clang++ -c src/**/*.cpp -O3 -ffast-math -I/opt/homebrew/include -Iinclude/
clang++ *.o -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -lSDL3 -o out/release.bin
rm ./*.o
cd out
./release.bin
cd ..