SConscript 271 B

1234567891011121314151617
  1. Import('RTT_ROOT')
  2. Import('rtconfig')
  3. from building import *
  4. cwd = GetCurrentDir()
  5. # add the general drivers.
  6. src = Split("""
  7. """)
  8. # src += ['drv_common.c']
  9. path = [cwd + '/include']
  10. group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
  11. Return('group')