4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 06:47:21 +08:00
2023-01-08 22:52:13 -05:00

13 lines
245 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')