27b698f081
Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com>
18 lines
440 B
Batchfile
18 lines
440 B
Batchfile
@echo off
|
|
call "%~dp0scripts\toolchain\fbtenv.cmd" env
|
|
|
|
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
|
|
)
|
|
)
|
|
git submodule update --init
|
|
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
|
python lib\scons\scripts\scons.py %SCONS_DEFAULT_FLAGS% %*
|