| 123456789101112131415 |
- from building import *
- src = []
- cwd = GetCurrentDir()
- include_path = [cwd]
- # add lorawan regional paramters
- if GetDepend('LORAWAN_ED_STACK_APP_SHELL_TEST'):
- src += Split('''
- lorawan-ed-shell/lorawan-ed-test-shell.c
- ''')
- group = DefineGroup('lorawan-ed-stack/app/samples', src, depend = ['PKG_USING_LORAWAN_ED_STACK'], CPPPATH = include_path)
- Return('group')
|