13 lines
242 B
Python
13 lines
242 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = os.path.join(str(Dir('#')), 'board')
|
||
|
src = Glob('./src/*.c')
|
||
|
path = [cwd + '/inc'
|
||
|
]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|