mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 05:53:31 +08:00
19 lines
295 B
Python
19 lines
295 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
# add the general drivers.
|
||
|
src = Split("""
|
||
|
""")
|
||
|
|
||
|
if GetDepend(['RT_USING_SERIAL']):
|
||
|
src += ['drv_uart.c']
|
||
|
|
||
|
path = [cwd]
|
||
|
|
||
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|