Files
luban-lite/bsp/examples/test-pm/SConscript

17 lines
377 B
Python
Raw Normal View History

2023-11-09 20:19:51 +08:00
Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
2024-09-03 11:16:08 +08:00
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')
2023-11-09 20:19:51 +08:00
group = DefineGroup('test-pm', src, depend = [''], CPPPATH = CPPPATH)
Return('group')