working on linux build scripts

This commit is contained in:
2024-09-10 03:53:50 -04:00
parent a6ae0b8fb9
commit 15b8291131
7 changed files with 396 additions and 6 deletions

9
scripts/clean.sh Normal file
View File

@@ -0,0 +1,9 @@
path_root="$(git rev-parse --show-toplevel)"
path_backend="$path_root/backend"
path_build="$path_root/build"
path_examples="$path_root/examples"
path_scripts="$path_root/scripts"
path_thirdparty="$path_root/thirdparty"
if [ -d "$path_build" ]; then rm -rf "$path_build"; fi
# if [ -d "$path_thirdparty" ]; then rm -rf "$path_thirdparty"; fi