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

16 lines
299 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
2025-01-08 19:12:06 +08:00
if GetDepend('AIC_STRIP_MODE'):
src = []
else:
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')