* fbt: split sdk management code * scripts: fixed import handling * fbt: sdk: reformatted paths * scrips: dist: bundling libs as a build artifact * fbt: sdk: better path management * typo fix * fbt: sdk: minor path handling fixes * toolchain: fixed windows toolchain download * fbt: minor refactorin * fbt: moved sdk management code to extapps.scons * fbt: fixed sdk symbols header path; disabled -fstack-usage * fbt: changed pathing for .py scripts * fbt: changed SDK_HEADERS pathing; added libusb to SDK; added icon_i.h to SDK; added hw target to SDK meta * fbt: added libusb headers to SDK * picopass: include cleanup; api: added subghz/registry.h; api: added mbedtls to exported headers * picopass: fixed formatting * fbt: fixed COPRO_ASSETS_SCRIPT * sdk: added basic infrared apis * toolchain: added ufbt to list of legal fbtenv callers; updated error messages * fbt: changed manifest collection & icon processing code * fbt: simpler srcdir lookup * toolchain: path management fixes; fbt: fixes for fap private libs paths * scripts: toolchain: reworked download on Windows * toolchain: v17 * scripts: added colorlog for logging * Github: fix unit tests Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			811 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			811 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Import("env")
 | |
| 
 | |
| 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",
 | |
|     "one_wire",
 | |
|     "u8g2",
 | |
|     "update_util",
 | |
| ]
 | |
| 
 | |
| for lib in libs_recurse:
 | |
|     sources += libenv.GlobRecursive("*.c*", lib)
 | |
| 
 | |
| libs_plain = [
 | |
|     "heatshrink",
 | |
|     "nanopb",
 | |
| ]
 | |
| 
 | |
| for lib in libs_plain:
 | |
|     sources += Glob(lib + "/*.c*", source=True)
 | |
| 
 | |
| lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | |
| libenv.Install("${LIB_DIST_DIR}", lib)
 | |
| Return("lib")
 |