11 lines
		
	
	
		
			185 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			185 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
from building import *
 | 
						|
 | 
						|
cwd = GetCurrentDir()
 | 
						|
path  = [cwd]
 | 
						|
 | 
						|
src  = Glob('*.c')
 | 
						|
 | 
						|
group = DefineGroup('lwIP', src, depend = ['RT_USING_LWIP'], CPPPATH = path)
 | 
						|
 | 
						|
Return('group')
 |