Files
2025-09-30 11:56:06 +08:00

17 lines
393 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('RT_USING_FINSH') and GetDepend('AIC_PM_DEMO'):
src += Glob('pm_demo.c')
if GetDepend('RT_USING_FINSH') and GetDepend('AIC_PM_TEST'):
src += Glob('test_pm.c')
group = DefineGroup('test-pm', src, depend = [''], CPPPATH = CPPPATH)
Return('group')