Files
luban-lite-t3e-pro/bsp/examples/test-psadc/SConscript
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

14 lines
285 B
Python

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