1Import('RTT_ROOT')
2Import('rtconfig')
3from building import *
4
5cwd  = GetCurrentDir()
6CPPPATH = [cwd]
7
8# The set of source files associated with this SConscript file.
9src = Glob('*.c')
10
11group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
12Return('group')
13