2022-06-26 15:00:03 +03:00
|
|
|
@echo off
|
2022-07-26 00:31:34 +03:00
|
|
|
call "%~dp0scripts\toolchain\fbtenv.cmd" env
|
2022-06-30 19:06:12 +03:00
|
|
|
|
|
|
|
set SCONS_EP=%~dp0\lib\scons\scripts\scons.py
|
|
|
|
|
2022-07-04 20:38:18 +03:00
|
|
|
if [%FBT_NO_SYNC%] == [] (
|
2022-07-14 19:24:26 +03:00
|
|
|
if exist ".git" (
|
|
|
|
git submodule update --init
|
|
|
|
) else (
|
|
|
|
echo Not in a git repo, please clone with git clone --recursive
|
|
|
|
exit /b 1
|
|
|
|
)
|
2022-06-26 15:00:03 +03:00
|
|
|
)
|
2022-07-04 21:57:40 +03:00
|
|
|
|
2022-06-26 15:00:03 +03:00
|
|
|
set "SCONS_DEFAULT_FLAGS=-Q --warn=target-not-built"
|
2022-07-26 00:31:34 +03:00
|
|
|
python lib\scons\scripts\scons.py %SCONS_DEFAULT_FLAGS% %*
|