SConscript 302 B

12345678910111213141516
  1. import rtconfig
  2. Import('RTT_ROOT')
  3. from building import *
  4. # get current directory
  5. cwd = GetCurrentDir()
  6. # The set of source files associated with this SConscript file.
  7. src = Split("""
  8. """)
  9. path = [cwd + '/Include',]
  10. group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
  11. Return('group')