4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 18:13:32 +08:00
2023-01-08 22:52:13 -05:00

16 lines
265 B
Python

import copy
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
ASFLAGS = ' -I' + cwd
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group')