SConscript 239 B

123456789101112
  1. from building import *
  2. src = []
  3. cwd = GetCurrentDir()
  4. path = [cwd]
  5. if GetDepend('SAMPLES_USING_PWM'):
  6. src += ['./pwm/pwm_sample.c']
  7. group = DefineGroup('peripheral-samples', src, depend = [''], CPPPATH = path)
  8. Return('group')