* faploader: more subsystem headers in API table; not counting header entries for SDK version change * subghz: removed dead function * Adjusted API version * hal: removed furi_hal_power_get_system_voltage * lib: mbedtls: additional flags for .fap linkage * fbt: rebuilding assets when git commit id changes * fbt: removed assets rebuild on git commit id change; added explicit dependency for SDK source on compiled assets parts; removed unneeded sdk regeneration runs * fbt: changed stock plugins to EXTERNAL apps; restored building app as a PLUGIN as a part of main fw as well as a .fap; readme fixes * fbt: restored certain apps to PLUGIN type * fbt: app manifests: renamed version->fap_version, added extra fields * fbt: fixed version processing after rename Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			660 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			660 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| Import("env")
 | |
| 
 | |
| env.Append(
 | |
|     LINT_SOURCES=[
 | |
|         "#/lib/lfrfid",
 | |
|     ],
 | |
|     CPPPATH=[
 | |
|         "#/lib/lfrfid",
 | |
|     ],
 | |
|     SDK_HEADERS=[
 | |
|         File("#/lib/lfrfid/lfrfid_worker.h"),
 | |
|         File("#/lib/lfrfid/lfrfid_raw_worker.h"),
 | |
|         File("#/lib/lfrfid/lfrfid_raw_file.h"),
 | |
|         File("#/lib/lfrfid/lfrfid_dict_file.h"),
 | |
|         File("#/lib/lfrfid/tools/bit_lib.h"),
 | |
|         File("#/lib/lfrfid/protocols/lfrfid_protocols.h"),
 | |
|     ],
 | |
| )
 | |
| 
 | |
| libenv = env.Clone(FW_LIB_NAME="lfrfid")
 | |
| libenv.ApplyLibFlags()
 | |
| 
 | |
| sources = libenv.GlobRecursive("*.c*")
 | |
| 
 | |
| lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | |
| libenv.Install("${LIB_DIST_DIR}", lib)
 | |
| Return("lib")
 |