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

16 lines
294 B
Python
Raw Normal View History

2023-08-30 16:21:18 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
if GetDepend('KERNEL_RTTHREAD') == True:
src = Glob('*.c')
else:
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include/', ]
group = DefineGroup('aic_debug', src, depend = [''], CPPPATH = CPPPATH)
Return('group')