16 lines
324 B
Batchfile
16 lines
324 B
Batchfile
@echo off
|
|
|
|
set SCONS_EP=%~dp0\lib\scons\scripts\scons.py
|
|
|
|
if [%FBT_NO_SYNC%] == [] (
|
|
if exist ".git" (
|
|
git submodule update --init
|
|
) else (
|
|
echo Not in a git repo, please clone with git clone --recursive
|
|
exit /b 1
|
|
)
|
|
)
|
|
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
|
python %SCONS_EP% %SCONS_DEFAULT_FLAGS% %*
|