SConscript 286 B

12345678910111213
  1. from building import *
  2. Import('rtconfig')
  3. cwd = GetCurrentDir()
  4. src = ["spl06_01.c"]
  5. path = [cwd]
  6. if GetDepend('PKG_SPL0601_USING_SENSOR_V1'):
  7. src += ["spl0601_sensor_v1.c"]
  8. group = DefineGroup('spl0601', src, depend = ['PKG_USING_SPL0601'], CPPPATH = path)
  9. Return('group')