Files
luban-lite-t3e-pro/bsp/artinchip/sys/g73x/SConscript

15 lines
347 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
2024-04-03 16:40:57 +08:00
# add the chip drivers.
2023-08-30 16:21:18 +08:00
src = Glob("*.c") + Glob("*.cpp") + Glob("*.S")
LOCAL_CPPPATH = [cwd]
CPPPATH = [cwd + '/include']
2024-04-03 16:40:57 +08:00
group = DefineGroup('Chip', src, depend = ['AIC_CHIP_G73X'], LOCAL_CPPPATH = LOCAL_CPPPATH, CPPPATH = CPPPATH)
2023-08-30 16:21:18 +08:00
Return('group')