| 12345678910111213141516171819202122 |
- from building import *
- cwd = GetCurrentDir()
- path = [cwd + '/inc']
- src = Glob('src/*.c')
- src += Glob('samples/ppp_sample.c')
- # Air720
- if GetDepend(['PPP_DEVICE_USING_AIR720']):
- src += Glob('class/ppp_device_air720.c')
- # M6312
- if GetDepend(['PPP_DEVICE_USING_M6312']):
- src += Glob('class/ppp_device_m6312.c')
- # SIM800
- if GetDepend(['PPP_DEVICE_USING_SIM800']):
- src += Glob('class/ppp_device_sim800.c')
- group = DefineGroup('ppp_device', src, depend = ['PKG_USING_PPP_DEVICE'], CPPPATH = path)
- Return('group')
|