Compare commits

...

2 Commits

Author SHA1 Message Date
Matija Koželj
acd9963b41 Update Connected dependency 2023-03-01 15:11:17 +01:00
Matija Koželj
70f1d13803 Add init batch script 2023-03-01 15:11:03 +01:00
2 changed files with 23 additions and 1 deletions

22
build/init.bat Normal file
View File

@ -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

@ -1 +1 @@
Subproject commit cc259dfc18c4ad6989898fa813e281b9249c3bd3 Subproject commit dd40532a0ff03237407de9635c7211c5e1af5807