SConscript 343 B

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