SConscript 370 B

1234567891011121314151617
  1. from building import *
  2. cwd = GetCurrentDir()
  3. src = []
  4. if GetDepend(['BSP_USING_TOUCH_FT6206']):
  5. src += Glob('drv_touch.c')
  6. src += Glob('drv_touch_ft6206.c')
  7. if GetDepend(['BSP_USING_TOUCH_FT6X36']):
  8. src += Glob('drv_touch_ft6x36.c')
  9. CPPPATH = [cwd]
  10. group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
  11. Return('group')