Merge branch 'security-summit' into 'master'
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / tizen / SimpleClientServer / scons / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH 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 Import('env')
22
23 target_os = env.get('TARGET_OS')
24 transport = env.get('TARGET_TRANSPORT')
25 secured = env.get('SECURED')
26
27 OIC_LIB = 'oic'
28 root_dir = env.get('ROOT_DIR')
29 build_dir = env.get('BUILD_DIR')
30 sample_dir = build_dir
31
32 env.AppendUnique(CPPFLAGS = ['-std=c++0x', '-fPIC', '-D__TIZEN__','-DWITH_POSIX', '-Wall', '-DSLP_SDK_LOG', '-g','-D_GNU_SOURCE','-DTIZEN_DEBUG_ENABLE', '-DTB_LOG','`pkg-config', '--cflags', '--libs','dlog', 'com.oic.ri', 'capi-network-wifi',
33                                 'gobject-2.0','glib-2.0`'])
34
35 env.Append(LIBS=[
36   '-lm', '-lpthread', '-lrt', '-ldl', '-lstdc++', '-lgobject-2.0', '-lgio-2.0', '-lglib-2.0', '-lcapi-network-wifi', '-ldlog', '-lcapi-network-bluetooth', '-lconnectivity_abstraction', 'coap', '-loctbstack', 'ocsrm', 'c_common'
37 ])
38
39 if secured == '1':
40         env.PrependUnique(CPPPATH = [root_dir + '/external/inc/'])
41         env.AppendUnique(CPPDEFINES = ['__WITH_DTLS__'])
42         env.Append(LIBS=['-ltinydtls'])
43
44 if 'ALL' in transport:
45                 env.AppendUnique(CPPDEFINES = ['IP_ADAPTER','EDR_ADAPTER','LE_ADAPTER','BT_ADAPTER_TEST','BLE_ADAPTER_TEST'])
46                 print "CA Transport is ALL"
47 else:
48         if 'BT' in transport:
49                 env.AppendUnique(CPPDEFINES = ['EDR_ADAPTER','BT_ADAPTER_TEST'])
50                 print "CA Transport is BT"
51         else:
52                 env.AppendUnique(CPPDEFINES = ['NO_EDR_ADAPTER'])
53
54         if 'BLE' in transport:
55                 env.AppendUnique(CPPDEFINES = ['LE_ADAPTER','BLE_ADAPTER_TEST'])
56                 print "CA Transport is BLE"
57         else:
58                 env.AppendUnique(CPPDEFINES = ['NO_LE_ADAPTER'])
59
60         if 'IP' in transport:
61                 env.AppendUnique(CPPDEFINES = ['IP_ADAPTER'])
62                 print "CA Transport is IP"
63         else:
64                 env.AppendUnique(CPPDEFINES = ['NO_IP_ADAPTER'])
65
66 #ri_sample_src = [sample_dir + '/occlient.cpp']
67
68 #print " ri sample src %s" % ri_sample_src
69
70 #env.Program('ri_sample', [ri_sample_src,])
71
72 env.Program('occlient', [sample_dir + 'occlient.cpp', sample_dir + 'common.cpp'])
73 env.Program('ocserver', [sample_dir + 'ocserver.cpp', sample_dir + 'common.cpp'])