Files
刘可亮 0ef85b55da v1.1.0
2024-09-30 17:06:01 +08:00

17 lines
473 B
Python

Import('AIC_ROOT')
Import('PRJ_KERNEL')
from building import *
cwd = GetCurrentDir()
CPPPATH = []
src = []
if GetDepend('KERNEL_BAREMETAL') and GetDepend('AIC_HRTIMER_DRV_TEST'):
if GetDepend('AIC_HRTIMER_DRV_V10') or GetDepend('AIC_HRTIMER_DRV_V11'):
src += Glob('test_hrtimer.c')
elif GetDepend('AIC_HRTIMER_DRV_V12'):
src += Glob('test_hrtimer_pwm.c')
group = DefineGroup('test-hrtimer', src, depend = [''], CPPPATH = CPPPATH)
Return('group')