Files
luban-lite/kernel/common/cmd/SConscript
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

16 lines
299 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')