Files
luban-lite-t3e-pro/bsp/artinchip/sys/d13x/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

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_D13X'], LOCAL_CPPPATH = LOCAL_CPPPATH, CPPPATH = CPPPATH)
Return('group')