SConscript 352 B

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