 c3ececcf96
			
		
	
	
		c3ececcf96
		
			
		
	
	
	
	
		
			
			* ufbt: added "dolphin_ext" target (expects "external" subfolder in cwd with dolphin assets); cleaned up unused code * ufbt: codestyle fixes * scripts: fixed style according to ruff linter * scripts: additional cleanup & codestyle fixes * github: pass target hw code when installing local SDK with ufbt * ufbt: added error message for missing folder in dolphin builder * scripts: more linter fixes * sdk: added flipper_format_stream; ufbt: support for --extra-define * fbt: reduced amount of global defines * scripts, fbt: rearranged imports Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import posixpath
 | |
| 
 | |
| from SCons.Errors import UserError
 | |
| 
 | |
| 
 | |
| def BuildModule(env, module):
 | |
|     src_dir = str(env.Dir(".").srcdir or os.getcwd())
 | |
|     module_sconscript = posixpath.join(src_dir, module, "SConscript")
 | |
|     if not os.path.exists(module_sconscript):
 | |
|         module_sconscript = posixpath.join(src_dir, f"{module}.scons")
 | |
|         if not os.path.exists(module_sconscript):
 | |
|             raise UserError(f"Cannot build module {module}: scons file not found")
 | |
| 
 | |
|     env.Append(PY_LINT_SOURCES=[module_sconscript])
 | |
|     return env.SConscript(
 | |
|         module_sconscript,
 | |
|         variant_dir=posixpath.join(env.subst("$BUILD_DIR"), module),
 | |
|         duplicate=0,
 | |
|     )
 | |
| 
 | |
| 
 | |
| def BuildModules(env, modules):
 | |
|     result = []
 | |
|     for module in modules:
 | |
|         if module in env.get("SKIP_MODULES", []):
 | |
|             continue
 | |
|         build_res = env.BuildModule(module)
 | |
|         # print("module ", module, build_res)
 | |
|         if build_res is None:
 | |
|             continue
 | |
|         result.append(build_res)
 | |
|     return result
 | |
| 
 | |
| 
 | |
| def PhonyTarget(env, name, action, source=None, **kw):
 | |
|     if not source:
 | |
|         source = []
 | |
|     phony_name = "phony_" + name
 | |
|     env.Pseudo(phony_name)
 | |
|     command = env.Command(phony_name, source, action, **kw)
 | |
|     env.AlwaysBuild(env.Alias(name, command))
 | |
|     return command
 | |
| 
 | |
| 
 | |
| def ChangeFileExtension(env, fnode, ext):
 | |
|     return env.File(f"#{os.path.splitext(fnode.path)[0]}{ext}")
 | |
| 
 | |
| 
 | |
| def generate(env):
 | |
|     env.AddMethod(BuildModule)
 | |
|     env.AddMethod(BuildModules)
 | |
|     env.AddMethod(PhonyTarget)
 | |
|     env.AddMethod(ChangeFileExtension)
 | |
| 
 | |
| 
 | |
| def exists(env):
 | |
|     return True
 |