12 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| # RT-Thread building script for component
 | |
| 
 | |
| from building import *
 | |
| 
 | |
| cwd     = GetCurrentDir()
 | |
| src     = Glob('*.c') + Glob('*.S')
 | |
| CPPPATH = [cwd]
 | |
| 
 | |
| group = DefineGroup('lwp-x86-i386', src, depend = ['RT_USING_SMART'], CPPPATH = CPPPATH)
 | |
| 
 | |
| Return('group')
 |