* digital signal: add optimization * nfc test: more restrict tests * digital signal: build as separate library * digital signal: remove unused flags, format sources * digital signal: fix cflag name * target: fix build for f18 target Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			421 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			421 B
		
	
	
	
		
			Python
		
	
	
	
	
	
Import("env")
 | 
						|
 | 
						|
env.Append(
 | 
						|
    CPPPATH=[
 | 
						|
        "#/lib/digital_signal",
 | 
						|
    ],
 | 
						|
    SDK_HEADERS=[
 | 
						|
        File("digital_signal.h"),
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
libenv = env.Clone(FW_LIB_NAME="digital_signal")
 | 
						|
libenv.ApplyLibFlags()
 | 
						|
libenv.Append(CCFLAGS=["-O3", "-funroll-loops", "-Ofast"])
 | 
						|
 | 
						|
sources = libenv.GlobRecursive("*.c*")
 | 
						|
 | 
						|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
 | 
						|
libenv.Install("${LIB_DIST_DIR}", lib)
 | 
						|
Return("lib")
 |