4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 01:33:31 +08:00

11 lines
205 B
Python
Raw Normal View History

2020-04-14 22:17:27 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
2021-06-19 22:16:52 +08:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
2020-04-14 22:17:27 +08:00
Return('group')