You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo This script will compile ingescape and its dependencies in a local sysroot directory at %CODEROOT%/sysroot/Program Files/Ingescape/library. This is a nice way to have everything you need to debug/contribute to Ingescape without installing anything on your system.
cd %IGS%
set /p choice=Do you want to continue? [yN]
if '%choice%'=='y' goto run
if '%choice%'=='Y' goto run
goto return
:run
REM make sure all submodules are here
git submodule update --init --recursive
mkdir %CODEROOT%/sysroot
echo Deploying ingescape library and its dependencies in %CODEROOT%/sysroot...