You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
382 B
22 lines
382 B
2 years ago
|
@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
|