new explicit build script diagnostic system; overrides system; move old build script content onto new system; reconfigure project.4coder

This commit is contained in:
Allen Webster
2021-08-21 23:15:51 -07:00
parent a6f3a12a7d
commit 5ef50bd3df
12 changed files with 305 additions and 86 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
###### Get Paths ##############################################################
og_path=$PWD
cd "$(dirname "$0")"
cd ..
root_path=$PWD
bin_path=$root_path/bin
###### Bin Scripts ############################################################
$bin_path/build_tests.sh
$bin_path/build_samples.sh
$bin_path/run_tests.sh
$bin_path/run_samples.sh
###### Restore Path ###########################################################
cd $og_path