Merge "Merge branch 'easysetup'"
[platform/upstream/iotivity.git] / resource / provisioning / examples / SConscript
1 #******************************************************************
2 #
3 # Copyright 2015 Samsung Electronics All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 ##
22 # Examples build script
23 ##
24 Import('env')
25 # Add third party libraries
26 lib_env = env.Clone()
27 SConscript(env.get('SRC_DIR') + '/resource/third_party_libs.scons', 'lib_env')
28
29 with_ra = env.get('WITH_RA')
30 with_ra_ibb = env.get('WITH_RA_IBB')
31
32 examples_env = lib_env.Clone()
33
34 ######################################################################
35 # Build flags
36 ######################################################################
37 examples_env.AppendUnique(CPPPATH = [
38         '../../include/',
39         '../../csdk/stack/include',
40         '../../csdk/logger/include',
41         '../../oc_logger/include',
42         '../../csdk/connectivity/api',
43         '../../csdk/security/include',
44         '../../csdk/security/provisioning/include',
45         '../../csdk/security/provisioning/include/oxm',
46         '../../csdk/security/provisioning/include/internal'
47                 ])
48
49 target_os = env.get('TARGET_OS')
50 if target_os not in ['windows', 'winrt']:
51         examples_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
52
53         # Note: 'pthread' is in libc for android. On other platform, if use
54         # new gcc(>4.9?) it isn't required, otherwise, it's required
55         if target_os != 'android':
56                 examples_env.AppendUnique(LIBS = ['-lpthread', '-ldl'])
57
58 examples_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
59 examples_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
60 examples_env.PrependUnique(LIBS = ['ocprovision', 'oc', 'ocpmapi', 'octbstack',
61                                     'oc_logger', 'connectivity_abstraction', 'coap'])
62 if with_ra_ibb:
63         examples_env.AppendUnique(LIBS = examples_env['RALIBS'], LIBPATH = examples_env['RALIBPATH'], RPATH = examples_env['RARPATH'])
64         print "RALIBS = %s" % examples_env['RALIBS']
65         print "RALIBPATH = %s" % examples_env['RALIBPATH']
66         print "RARPATH = %s" % examples_env['RARPATH']
67         examples_env.AppendUnique(LIBS = 'wksxmppxep')
68 else :
69         if with_ra:
70                 examples_env.AppendUnique(LIBS = ['ra_xmpp'])
71
72 if env.get('SECURED') == '1':
73     examples_env.AppendUnique(LIBS = ['tinydtls'])
74     examples_env.AppendUnique(LIBS = ['timer'])
75 if env.get('DTLS_WITH_X509') == '1':
76         examples_env.AppendUnique(LIBS = ['CKManager'])
77         examples_env.AppendUnique(LIBS = ['asn1'])
78
79 if target_os == 'android':
80         examples_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
81         examples_env.AppendUnique(LIBS = ['gnustl_shared'])
82
83         if not env.get('RELEASE'):
84                 examples_env.AppendUnique(LIBS = ['log'])
85
86 if target_os in ['darwin', 'ios']:
87         examples_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
88
89 ######################################################################
90 # Source files and Targets
91 ######################################################################
92 provisioningclient = examples_env.Program('provisioningclient', 'provisioningclient.cpp')
93
94 Alias("examples", [provisioningclient])
95 env.AppendTarget('examples')
96
97 src_dir = examples_env.get('SRC_DIR')
98 svr_db_src_dir = src_dir + '/resource/provisioning/examples/'
99 svr_db_build_dir = env.get('BUILD_DIR') +'/resource/provisioning/examples/'
100 examples_env.Alias("install", examples_env.Install( svr_db_build_dir,
101                 svr_db_src_dir + 'oic_svr_db_client.json'))