SConscript 297 B

1234567891011121314151617
  1. import os
  2. from building import *
  3. cwd = GetCurrentDir()
  4. # add the general drivers.
  5. src = Glob('board.c')
  6. src += Glob('CubeMX_Config/Src/stm32f7xx_hal_msp.c')
  7. path = [cwd]
  8. path += [cwd + '/CubeMX_Config/Inc']
  9. group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
  10. Return('group')