SConscript 313 B

12345678910111213141516
  1. Import('RTT_ROOT')
  2. from building import *
  3. src = Split("""
  4. block_dev.c
  5. mmcsd_core.c
  6. sd.c
  7. """)
  8. # The set of source files associated with this SConscript file.
  9. path = [RTT_ROOT + '/components/mmcsd']
  10. group = DefineGroup('MMCSD', src, depend = ['RT_USING_MMCSD'], CPPPATH = path)
  11. Return('group')