SConscript 292 B

1234567891011
  1. from building import *
  2. # get current directory
  3. cwd = GetCurrentDir()
  4. # The set of source files associated with this SConscript file.
  5. src = Glob('*.c')
  6. path = [cwd]
  7. group = DefineGroup('event_recorder', src, depend = ['PKG_USING_EVENT_RECORDER'], CPPPATH = path)
  8. Return('group')