18 lines
		
	
	
		
			458 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			458 B
		
	
	
	
		
			Python
		
	
	
	
| import os
 | |
| Import('RTT_ROOT')
 | |
| from building import *
 | |
| SOURCES = []
 | |
| SOURCES = ['adapter_bluetooth.c'] + SOURCES
 | |
| objs = []
 | |
| cwd = GetCurrentDir()
 | |
| path =  [cwd]
 | |
| group = DefineGroup('bluetooth', SOURCES, depend = [], CPPPATH = [cwd])
 | |
| objs =  objs + group
 | |
| list = os.listdir(cwd)
 | |
| 
 | |
| for d in list:
 | |
|     path = os.path.join(cwd, d)
 | |
|     if os.path.isfile(os.path.join(path, 'SConscript')):
 | |
|         objs = objs + SConscript(os.path.join(path, 'SConscript'))
 | |
| 
 | |
| Return('objs') |