Files
luban-lite-t3e-pro/kernel/common/cmd/SConscript
2025-09-30 11:56:06 +08:00

16 lines
314 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
if GetDepend('AIC_STRIP_MODE'):
src = []
else:
src = Glob('*.c') + Glob("*.S")
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include/', ]
group = DefineGroup('aic_debug', src, depend = [''], CPPPATH = CPPPATH)
Return('group')