* 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>
		
			
				
	
	
		
			30 lines
		
	
	
		
			795 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			795 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import SCons
 | 
						|
from fbt.util import GLOB_FILE_EXCLUSION
 | 
						|
from SCons.Script import Flatten
 | 
						|
 | 
						|
 | 
						|
def GlobRecursive(env, pattern, node=".", exclude=[]):
 | 
						|
    exclude = list(set(Flatten(exclude) + GLOB_FILE_EXCLUSION))
 | 
						|
    # print(f"Starting glob for {pattern} from {node} (exclude: {exclude})")
 | 
						|
    results = []
 | 
						|
    if isinstance(node, str):
 | 
						|
        node = env.Dir(node)
 | 
						|
    for f in node.glob("*", source=True, exclude=exclude):
 | 
						|
        if isinstance(f, SCons.Node.FS.Dir):
 | 
						|
            results += env.GlobRecursive(pattern, f, exclude)
 | 
						|
    results += node.glob(
 | 
						|
        pattern,
 | 
						|
        source=True,
 | 
						|
        exclude=exclude,
 | 
						|
    )
 | 
						|
    # print(f"Glob result for {pattern} from {node}: {results}")
 | 
						|
    return results
 | 
						|
 | 
						|
 | 
						|
def generate(env):
 | 
						|
    env.AddMethod(GlobRecursive)
 | 
						|
 | 
						|
 | 
						|
def exists(env):
 | 
						|
    return True
 |