Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fbt.cmd - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 484b106459e035c1b32f64c90080eb33a937f49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@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% %*