SConscript 334 B

1234567891011121314
  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. CPPDEFINES = ['MG_LOCALS']
  8. group = DefineGroup('Mongoose', src, depend = ['PKG_USING_MONGOOSE'], CPPPATH = path, CPPDEFINES = CPPDEFINES)
  9. Return('group')