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

13 lines
230 B
Python
Raw Normal View History

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