fix: vscode debugging build

This commit is contained in:
2023-09-05 03:09:10 +04:00
parent ef40eaf7ef
commit 564955c911
2 changed files with 4 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash
CC="${CXX:-c++}"
LL="-lm -lraylib"
FLAGS="-Wall -std=c++17 -I./inc/"
FLAGS="-Wall -std=c++17 -I./inc/ -g"
$CC $FLAGS $(find ./src -type f -iregex ".*\.cpp") $LL -o ./bin/main