7 lines
235 B
Bash
7 lines
235 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
|
|
cd ./out
|
|
./debug.bin
|
|
cd .. |