Introduce Linux counter parts

This commit is contained in:
Jaby
2023-10-06 17:02:30 +02:00
committed by Jaby
parent b620ca5a2a
commit 396bb3e6ae
5 changed files with 74 additions and 55 deletions

12
src/Tools/build_all.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# build_all {build|check|clean}
if [ $1 = clean ]; then
all_project=$win_tools $linux_tools $clean_tools
else
all_project=$win_tools $linux_tools
fi
for prj in ${all_project[@]}; do
source run_cargo.sh $prj $1 release
done