Files
luban-lite-t3e-pro/bsp/examples/test-pm/SConscript
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

17 lines
377 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')