SConscript 321 B

12345678910111213
  1. Import('RTT_ROOT')
  2. Import('rtconfig')
  3. from building import *
  4. cwd = os.path.join(str(Dir('#')), 'applications')
  5. src = Glob('*.c')
  6. CPPPATH = [cwd, str(Dir('#'))]
  7. CCFLAGS = ' -c -mistack -ffunction-sections'
  8. group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CCFLAGS=CCFLAGS)
  9. Return('group')