Add init batch script

pull/11/head^2
Matija Koželj 2 years ago
parent 10a7454c48
commit 70f1d13803

@ -0,0 +1,22 @@
@echo off
SET root=%cd%
echo "Syncing submodules"
git submodule sync
git submodule update --init --remote
echo "Submodules up to date"
FOR /F "delims=" %%a IN ('DIR "../dependencies" /A:d /B') DO (
echo Handling %%a
cd "../dependencies/%%a/build"
echo %cd%
IF EXIST init.bat (
echo "found init.bat"
call init
)
cd %root%
)
cd ../
dotnet build
Loading…
Cancel
Save