SConscript 296 B

123456789101112
  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('src/*.c')
  6. path = [cwd + '/inc']
  7. group = DefineGroup('EasyFlash', src, depend = ['PKG_USING_EASYFLASH'], CPPPATH = path)
  8. Return('group')