5 lines
224 B
Bash
5 lines
224 B
Bash
clang++ -c src/*.cpp -I/opt/homebrew/include -Iinclude/
|
|
clang++ -c src/**/*.cpp -I/opt/homebrew/include -Iinclude/
|
|
clang++ *.o -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -lSDL3 -o out/debug.bin
|
|
rm ./*.o
|
|
./out/debug.bin |