SConscript 231 B

12345678910111213
  1. Import('RTT_ROOT')
  2. Import('rtconfig')
  3. from building import *
  4. cwd = GetCurrentDir()
  5. src = Glob('*.c')
  6. path = [cwd, cwd + '/..']
  7. group = DefineGroup('Platform', src, depend = ['CONFIG_PLAT_V2'], CPPPATH = path)
  8. Return('group')