SConscript 369 字节
Newer Older
S
supperthomas 已提交
1 2 3 4 5 6 7 8 9 10
Import('RTT_ROOT')
Import('rtconfig')
from building import *

cwd = GetCurrentDir()

# add the general drivers.
src = Split("""
""")

11
if GetDepend(['BSP_USING_UART']):
S
supperthomas 已提交
12
    src += ['drv_uart.c']
Thomas_Fly's avatar
Thomas_Fly 已提交
13 14 15
    
if GetDepend(['BSP_USING_ON_CHIP_FLASH']):
    src += ['drv_flash.c']
S
supperthomas 已提交
16 17 18 19 20 21

path =  [cwd]

group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)

Return('group')