mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
35c903494c
* fbt: optional shallow submodule checkout * fbt: more git threads by default * fbt: git condition fix * fbt: renamed FBT_SHALLOW to FBT_GIT_SUBMODULE_SHALLOW * github: enabled FBT_GIT_SUBMODULE_SHALLOW in flows * fbt: always compile icons' .c, even if user does not specify a proper source glob; changed glob to require files at user-specified paths to exist * fbt: fail build for missing imports in .faps * fbt: moved STRICT_FAP_IMPORT_CHECK to commandline options; enabled by default * ufbt: enabled STRICT_FAP_IMPORT_CHECK Co-authored-by: あく <alleteam@gmail.com>
29 lines
782 B
Batchfile
29 lines
782 B
Batchfile
@echo off
|
|
call "%~dp0scripts\toolchain\fbtenv.cmd" env
|
|
|
|
set SCONS_EP=python -m SCons
|
|
|
|
if [%FBT_NO_SYNC%] == [] (
|
|
set _FBT_CLONE_FLAGS=--jobs %NUMBER_OF_PROCESSORS%
|
|
if not [%FBT_GIT_SUBMODULE_SHALLOW%] == [] (
|
|
set _FBT_CLONE_FLAGS=%_FBT_CLONE_FLAGS% --depth 1
|
|
)
|
|
if exist ".git" (
|
|
git submodule update --init --recursive %_FBT_CLONE_FLAGS%
|
|
if %ERRORLEVEL% neq 0 (
|
|
echo Failed to update submodules, set FBT_NO_SYNC to skip
|
|
exit /b 1
|
|
)
|
|
) else (
|
|
echo .git not found, please clone repo with "git clone"
|
|
exit /b 1
|
|
)
|
|
)
|
|
|
|
set "SCONS_DEFAULT_FLAGS=--warn=target-not-built"
|
|
|
|
if not defined FBT_VERBOSE (
|
|
set "SCONS_DEFAULT_FLAGS=%SCONS_DEFAULT_FLAGS% -Q"
|
|
)
|
|
|
|
%SCONS_EP% %SCONS_DEFAULT_FLAGS% %*
|