Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / linux / SimpleClientServer / 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 target_os = env.get('TARGET_OS')
23 samples_env = env.Clone()
24 with_ra = env.get ('WITH_RA')
25 ######################################################################
26 # Build flags
27 ######################################################################
28 samples_env.PrependUnique(CPPPATH = [
29                 '../../../../logger/include',
30                 '../../../../stack/include',
31                 '../../../../../../extlibs/cjson',
32                 '../../../../../oc_logger/include',
33                 '../../../../../connectivity/lib/libcoap-4.1.1'
34                 ])
35
36 samples_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-pthread'])
37 samples_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
38 samples_env.AppendUnique(LIBS = ['-lpthread' ])
39 samples_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
40
41 if target_os in ['darwin', 'ios']:
42         samples_env.PrependUnique(LIBS = ['m','octbstack', 'ocsrm', 'connectivity_abstraction','coap' ])
43 elif target_os not in ['arduino']:
44         samples_env.PrependUnique(LIBS = ['m', 'octbstack', 'ocsrm', 'oc_logger', 'connectivity_abstraction', 'coap'])
45         samples_env.AppendUnique(LIBS = ['rt'])
46
47 if env.get('SECURED') == '1':
48     samples_env.AppendUnique(LIBS = ['tinydtls'])
49
50 samples_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
51
52 ######################################################################
53 # Source files and Targets
54 ######################################################################
55 ocserver         = samples_env.Program('ocserver', ['ocserver.cpp', 'common.cpp'])
56 occlient         = samples_env.Program('occlient', ['occlient.cpp', 'common.cpp'])
57 ocserverslow     = samples_env.Program('ocserverslow', ['ocserverslow.cpp', 'common.cpp'])
58 occlientslow     = samples_env.Program('occlientslow', ['occlientslow.cpp', 'common.cpp'])
59 ocservercoll     = samples_env.Program('ocservercoll', ['ocservercoll.cpp', 'common.cpp'])
60 occlientcoll     = samples_env.Program('occlientcoll', ['occlientcoll.cpp', 'common.cpp'])
61 ocserverbasicops = samples_env.Program('ocserverbasicops', ['ocserverbasicops.cpp', 'common.cpp'])
62 occlientbasicops = samples_env.Program('occlientbasicops', ['occlientbasicops.cpp', 'common.cpp'])
63 if with_ra:
64         ocremoteaccessclient = samples_env.Program('ocremoteaccessclient',
65                                                 ['ocremoteaccessclient.cpp','common.cpp'])
66
67 list_of_samples = [ocserver, occlient,
68                                 ocservercoll, occlientcoll,
69                                 ocserverbasicops, occlientbasicops,
70                                 ocserverslow, occlientslow
71                 ]
72 if with_ra:
73         list_of_samples.append (ocremoteaccessclient)
74 Alias("samples", list_of_samples)
75
76 env.AppendTarget('samples')
77
78