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')