SConscript 319 B

123456789101112131415
  1. from building import *
  2. src = []
  3. if GetDepend('RT_UTEST_USING_ALL_CASES') or GetDepend('BSP_UTEST_DRIVERS'):
  4. if GetDepend('BSP_USING_TIMERS'):
  5. src += ['test_timer.c']
  6. if GetDepend('BSP_USING_WDT'):
  7. src += ['test_wdt.c']
  8. group = DefineGroup('utestcases', src, depend = [''])
  9. Return('group')