SConscript 248 B

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