SConscript 375 B

12345678910111213141516
  1. Import('rtconfig')
  2. from building import *
  3. cwd = GetCurrentDir()
  4. src = []
  5. CPPPATH = [cwd]
  6. if GetDepend(['UTEST_COMPLETION_TC']):
  7. src += ['completion_tc.c', 'completion_timeout_tc.c']
  8. if GetDepend(['UTEST_WORKQUEUE_TC']):
  9. src += ['workqueue_tc.c']
  10. group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
  11. Return('group')