SConscript 231 B

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