SConscript 258 B

123456789101112131415
  1. import os
  2. import rtconfig
  3. from building import *
  4. cwd = GetCurrentDir()
  5. # add general drivers
  6. src = ['board.c']
  7. src += ['drv_uart.c']
  8. src += ['drv_virtio.c']
  9. path = [cwd]
  10. group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
  11. Return('group')