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

14 lines
232 B
Python
Raw Normal View History

2015-04-06 13:46:14 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
# get current directory
2021-04-02 22:32:03 +08:00
cwd = GetCurrentDir()
2015-04-06 13:46:14 +08:00
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')