4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 12:21:19 +08:00

13 lines
242 B
Python
Raw Normal View History

2017-09-20 14:21:18 +08:00
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')