implemented in c++ to improve readability and simplify maintenance Co-authored-by: HiveBeats <e1lama@protonmail.com> Reviewed-on: #13
6 lines
150 B
Bash
6 lines
150 B
Bash
#!/bin/bash
|
|
CC="${CXX:-c++}"
|
|
LL="-lm -lraylib"
|
|
FLAGS="-Wall -std=c++17 -I./inc/"
|
|
$CC $FLAGS $(find ./src -type f -iregex ".*\.cpp") $LL -o ./bin/main
|