SConscript 314 B

12345678910111213141516
  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. """)
  9. # The set of source files associated with this SConscript file.
  10. path = [cwd]
  11. group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
  12. Return('group')