 a91d319839
			
		
	
	
		a91d319839
		
			
		
	
	
	
	
		
			
			* scripts: moved ufbt code * ufbt: fixed tool path * ufbt: fixed linter/formatter target descriptions * scripts: ufbt: cleanup * fbt: moved fap launch target to tools; ufbt fixes * fbt: fixed missing headers from SDK * ufbt: removed debug output * ufbt: moved project template to main codebase * ufbt: fixed vscode_dist * ufbt: path naming changes * fbt: error message for older ufbt versions * ufbt: docs fixes * ufbt: fixed build dir location * fbt: fixes for extapps objcopy * fbt: extapps: removed extra debug output; fixed formatting * ufbt: handle launch target for multiple known apps * ufbt: dropping wrapper; linter fixes * ufbt: fixed boostrap path * ufbt: renamed entrypoint * ufbt: updated vscode config * ufbt: moved sconsign db location * ufbt: fixed sconsign path * fbt: SDK builders rework * fbt: reworked sdk packaging * ufbt: additional checks and state processing * ufbt: fixed sdk state file location * dist: not packaging pycache * dump commit json content * Github: more workflow debug prints * Github: fix incorrect commit meta extraction in get_env.py * ufbt, fbt: changed SConsEnvironmentError->StopError * fbtenv: no longer needs SCRIPT_PATH pre-set * ufbt: fixed sdk state check * scripts: exception fixes for storage.py * scripts: fbtenv: added FBT_TOOLCHAIN_PATH for on Windows for compat * ufbt: app template: creating .gitkeep for images folder * ufbt: app template: fixed .gitkeep creation * docs: formatting fixes for AppManifests; added link to ufbt * fbt: added link to PyPI for old ufbt versions * sdk: fixed dir component paths Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| 
 | |
| if not ["%FBT_ROOT%"] == [""] (
 | |
|     goto already_set
 | |
| )
 | |
| 
 | |
| set "FBT_ROOT=%~dp0\..\..\"
 | |
| pushd "%FBT_ROOT%"
 | |
| set "FBT_ROOT=%cd%"
 | |
| popd
 | |
| 
 | |
| if not ["%FBT_NOENV%"] == [""] (
 | |
|     exit /b 0
 | |
| )
 | |
| 
 | |
| set "FLIPPER_TOOLCHAIN_VERSION=21"
 | |
| 
 | |
| if ["%FBT_TOOLCHAIN_PATH%"] == [""] (
 | |
|     set "FBT_TOOLCHAIN_PATH=%FBT_ROOT%"
 | |
| )
 | |
| 
 | |
| set "FBT_TOOLCHAIN_ROOT=%FBT_TOOLCHAIN_PATH%\toolchain\x86_64-windows"
 | |
| 
 | |
| set "FBT_TOOLCHAIN_VERSION_FILE=%FBT_TOOLCHAIN_ROOT%\VERSION"
 | |
| 
 | |
| if not exist "%FBT_TOOLCHAIN_ROOT%" (
 | |
|     powershell -ExecutionPolicy Bypass -File "%FBT_ROOT%\scripts\toolchain\windows-toolchain-download.ps1" %flipper_toolchain_version% "%FBT_TOOLCHAIN_ROOT%"
 | |
| )
 | |
| 
 | |
| if not exist "%FBT_TOOLCHAIN_VERSION_FILE%" (
 | |
|     powershell -ExecutionPolicy Bypass -File "%FBT_ROOT%\scripts\toolchain\windows-toolchain-download.ps1" %flipper_toolchain_version% "%FBT_TOOLCHAIN_ROOT%"
 | |
| )
 | |
| 
 | |
| set /p REAL_TOOLCHAIN_VERSION=<"%FBT_TOOLCHAIN_VERSION_FILE%"
 | |
| if not "%REAL_TOOLCHAIN_VERSION%" == "%FLIPPER_TOOLCHAIN_VERSION%" (
 | |
|     echo FBT: starting toolchain upgrade process..
 | |
|     powershell -ExecutionPolicy Bypass -File "%FBT_ROOT%\scripts\toolchain\windows-toolchain-download.ps1" %flipper_toolchain_version% "%FBT_TOOLCHAIN_ROOT%"
 | |
|     set /p REAL_TOOLCHAIN_VERSION=<"%FBT_TOOLCHAIN_VERSION_FILE%"
 | |
| )
 | |
| 
 | |
| if defined FBT_VERBOSE (
 | |
|     echo FBT: using toolchain version %REAL_TOOLCHAIN_VERSION%
 | |
| )
 | |
| 
 | |
| set "HOME=%USERPROFILE%"
 | |
| set "PYTHONHOME=%FBT_TOOLCHAIN_ROOT%\python"
 | |
| set "PYTHONPATH="
 | |
| set "PYTHONNOUSERSITE=1"
 | |
| set "PATH=%FBT_TOOLCHAIN_ROOT%\python;%FBT_TOOLCHAIN_ROOT%\bin;%FBT_TOOLCHAIN_ROOT%\protoc\bin;%FBT_TOOLCHAIN_ROOT%\openocd\bin;%PATH%"
 | |
| set "PROMPT=(fbt) %PROMPT%"
 | |
| 
 | |
| :already_set
 | |
| 
 | |
| if not "%1" == "env" (
 | |
|     echo *********************************
 | |
|     echo *     fbt build environment     *
 | |
|     echo *********************************
 | |
|     cd "%FBT_ROOT%"
 | |
|     cmd /k
 | |
| )
 |