SConscript 332 B

1234567891011121314151617
  1. from building import *
  2. cwd = GetCurrentDir()
  3. src = Split('''
  4. log_trace.c
  5. ''')
  6. CPPPATH = [cwd]
  7. if GetDepend('LOG_TRACE_USING_MEMLOG'):
  8. src += ['memlog.c']
  9. if GetDepend('RT_USING_DFS'):
  10. src += ['log_file.c']
  11. group = DefineGroup('Utilities', src, depend = ['RT_USING_LOGTRACE'], CPPPATH = CPPPATH)
  12. Return('group')