4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 19:39:53 +08:00
2017-11-01 13:30:17 +08:00

11 lines
205 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('iomux/*.c')
CPPPATH = [cwd, cwd + '/iomux']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')