Files

12 lines
232 B
Python
Raw Permalink Normal View History

2023-08-28 09:48:01 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd + '/../include/osal', ]
group = DefineGroup('aic_osal', src, depend = [''], CPPPATH = CPPPATH)
Return('group')