7 lines
269 B
Bash
7 lines
269 B
Bash
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 .. |