1
0

SConscript 333 B

12345678910111213141516171819
  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. gpt.c
  10. mmc.c
  11. """)
  12. # The set of source files associated with this SConscript file.
  13. path = [cwd + '/../include']
  14. group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
  15. Return('group')