SConscript 375 B

123456789101112131415
  1. from building import *
  2. src = []
  3. cwd = GetCurrentDir()
  4. include_path = [cwd]
  5. # add lorawan regional paramters
  6. if GetDepend('LORAWAN_ED_STACK_APP_SHELL_TEST'):
  7. src += Split('''
  8. lorawan-ed-shell/lorawan-ed-test-shell.c
  9. ''')
  10. group = DefineGroup('lorawan-ed-stack/app/samples', src, depend = ['PKG_USING_LORAWAN_ED_STACK'], CPPPATH = include_path)
  11. Return('group')