mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-14 18:29:22 +08:00
17 lines
220 B
Python
17 lines
220 B
Python
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
# add general drivers
|
||
|
src = Split('''
|
||
|
board.c
|
||
|
board_config.c
|
||
|
''')
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|