Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / easy-setup / sampleapp / enrollee / tizen-sdb / EnrolleeSample / SConstruct
1 ##
2 # The main build script
3 #
4 ##
5
6 # Load common build config
7 # Load common build config
8 SConscript('SConscript')
9
10 Import('env')
11
12 target_os = env.get('TARGET_OS')
13 transport = env.get('TARGET_TRANSPORT')
14
15 print "Given Transport is %s" % transport
16 print "Given OS is %s" % target_os
17 print "Secured %s" % env.get('SECURED')
18
19 if target_os == 'tizen':
20         SConscript('scons/SConscript')
21 else:
22         print "Given platform is not supported"
23