SConscript 338 B

1234567891011121314151617
  1. Import('RTT_ROOT')
  2. from building import *
  3. cwd = GetCurrentDir()
  4. src = Split("""
  5. block_dev.c
  6. mmcsd_core.c
  7. sd.c
  8. sdio.c
  9. """)
  10. # The set of source files associated with this SConscript file.
  11. path = [cwd + '/../include']
  12. group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
  13. Return('group')