mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
15 lines
347 B
Python
15 lines
347 B
Python
|
|
Import('RTT_ROOT')
|
||
|
|
Import('rtconfig')
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
|
||
|
|
# add the chip drivers.
|
||
|
|
src = Glob("*.c") + Glob("*.cpp") + Glob("*.S")
|
||
|
|
|
||
|
|
LOCAL_CPPPATH = [cwd]
|
||
|
|
CPPPATH = [cwd + '/include']
|
||
|
|
group = DefineGroup('Chip', src, depend = ['AIC_CHIP_D12X'], LOCAL_CPPPATH = LOCAL_CPPPATH, CPPPATH = CPPPATH)
|
||
|
|
|
||
|
|
Return('group')
|