This commit is contained in:
Daniel Ledda
2025-11-10 03:15:14 +01:00
parent db92620d65
commit a580e7b1cb
6 changed files with 41 additions and 30 deletions

6
build Normal file → Executable file
View File

@@ -1,3 +1,7 @@
#!/bin/bash
g++ -g -g3 -lm -DOS_LINUX=1 -DENABLE_ASSERT=1 ./app.cpp -o ./target/app
clang -g -g3 -lm -DOS_LINUX=1 -DENABLE_ASSERT=1 ./app.c -o ./target/app
if [[ $1 == "run" ]] then
./target/app
fi