15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| # RT-Thread building script for component
 | |
| 
 | |
| from building import *
 | |
| 
 | |
| cwd     = GetCurrentDir()
 | |
| src     = []
 | |
| CPPPATH = [cwd]
 | |
| 
 | |
| if GetDepend('RT_USING_POSIX_SIGNALFD'):
 | |
|     src += ['signalfd.c']
 | |
| 
 | |
| group = DefineGroup('POSIX', src, depend = ['RT_USING_SMART','RT_USING_POSIX_SIGNALFD'], CPPPATH = CPPPATH)
 | |
| 
 | |
| Return('group')
 |