4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 05:19:23 +08:00
2017-09-20 14:21:18 +08:00

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')