Files
luban-lite-t3e-pro/kernel/common/cmd/SConscript

13 lines
244 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
2024-06-04 19:00:30 +08:00
src = Glob('*.c') + Glob("*.S")
2023-08-30 16:21:18 +08:00
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include/', ]
group = DefineGroup('aic_debug', src, depend = [''], CPPPATH = CPPPATH)
Return('group')