Files
luban-lite/bsp/examples/test-wdt/SConscript
刘可亮 11c97ef399 v1.2.1
2025-07-22 11:15:46 +08:00

14 lines
285 B
Python

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