-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathSConscript
More file actions
31 lines (23 loc) · 758 Bytes
/
SConscript
File metadata and controls
31 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from building import *
cwd = GetCurrentDir()
path = [cwd + '/inc']
src = Glob('src/*.c')
if GetDepend(['PPP_DEVICE_SAMPLE']):
src += Glob('samples/ppp_sample.c')
# Air720
if GetDepend(['PPP_DEVICE_USING_AIR720']):
src += Glob('class/ppp_device_air720.c')
# EC20
if GetDepend(['PPP_DEVICE_USING_EC20']):
src += Glob('class/ppp_device_ec20.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')
# ML305
if GetDepend(['PPP_DEVICE_USING_ML305']):
src += Glob('class/ppp_device_ml305.c')
group = DefineGroup('ppp_device', src, depend = ['PKG_USING_PPP_DEVICE'], CPPPATH = path)
Return('group')