mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
added Bash build script
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
cd external
|
||||
git submodule update --init --recursive
|
||||
|
||||
deps=("gameBase" "vb01" "vb01Gui")
|
||||
ind=${!deps[@]}
|
||||
|
||||
for i in $ind
|
||||
do
|
||||
cd ${deps[$i]}
|
||||
git checkout develop
|
||||
cd external
|
||||
git submodule update --init --recursive
|
||||
cd ../..
|
||||
done
|
||||
|
||||
cd ..
|
||||
buildDir="build"
|
||||
cmake -S . -B $buildDir
|
||||
cd $buildDir
|
||||
make -j8
|
||||
Reference in New Issue
Block a user