* Rpc: reserve some bandwidth when screen streaming * Move furi_hal_compress to toolbox/comporess * Lib: heatshrink as external submodule, compile warnings fixes, better buffer management * Lib: cleanup compressor definitions * Rpc: add canvas orientation support * Format Sources
		
			
				
	
	
		
			58 lines
		
	
	
		
			983 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			983 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
Import("env")
 | 
						|
 | 
						|
from fbt.util import GLOB_FILE_EXCLUSION
 | 
						|
 | 
						|
env.Append(
 | 
						|
    CPPPATH=[
 | 
						|
        "#/lib/digital_signal",
 | 
						|
        "#/lib/fnv1a_hash",
 | 
						|
        "#/lib/heatshrink",
 | 
						|
        "#/lib/micro-ecc",
 | 
						|
        "#/lib/nanopb",
 | 
						|
        "#/lib/u8g2",
 | 
						|
    ],
 | 
						|
    CPPDEFINES=[
 | 
						|
        "PB_ENABLE_MALLOC",
 | 
						|
    ],
 | 
						|
    SDK_HEADERS=[
 | 
						|
        File("micro-ecc/uECC.h"),
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
libenv = env.Clone(FW_LIB_NAME="misc")
 | 
						|
libenv.ApplyLibFlags()
 | 
						|
 | 
						|
sources = []
 | 
						|
 | 
						|
libs_recurse = [
 | 
						|
    "digital_signal",
 | 
						|
    "micro-ecc",
 | 
						|
    "u8g2",
 | 
						|
    "update_util",
 | 
						|
]
 | 
						|
 | 
						|
for lib in libs_recurse:
 | 
						|
    sources += libenv.GlobRecursive("*.c*", lib)
 | 
						|
 | 
						|
libs_plain = [
 | 
						|
    "nanopb",
 | 
						|
]
 | 
						|
 | 
						|
for lib in libs_plain:
 | 
						|
    sources += Glob(
 | 
						|
        lib + "/*.c*",
 | 
						|
        exclude=GLOB_FILE_EXCLUSION,
 | 
						|
        source=True,
 | 
						|
    )
 | 
						|
 | 
						|
sources += Glob(
 | 
						|
    "heatshrink/heatshrink_*.c*",
 | 
						|
    exclude=GLOB_FILE_EXCLUSION,
 | 
						|
    source=True,
 | 
						|
)
 | 
						|
 | 
						|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | 
						|
libenv.Install("${LIB_DIST_DIR}", lib)
 | 
						|
Return("lib")
 |