SConscript 216 B

123456789
  1. from building import *
  2. cwd = GetCurrentDir()
  3. src = Glob('*.c')
  4. path = [cwd, cwd + '/..']
  5. group = DefineGroup('Drivers', src, depend = ['CONFIG_BOARD_IOTCAM', 'CONFIG_CHIP_FH8620'], CPPPATH = path)
  6. Return('group')