Imported Upstream version 0.9.1
[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 ######################################################################
25 # Build flags
26 ######################################################################
27 samples_env.PrependUnique(CPPPATH = [
28                 '../../../../logger/include',
29                 '../../../../stack/include',
30                 '../../../../ocmalloc/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', 'connectivity_abstraction','coap' ])
43 elif target_os not in ['arduino']:
44         samples_env.PrependUnique(LIBS = ['m', 'octbstack', '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
64 Alias("samples", [ocserver, occlient,
65                                 ocservercoll, occlientcoll,
66                                 ocserverbasicops, occlientbasicops,
67                                 ocserverslow, occlientslow
68                 ])
69
70 env.AppendTarget('samples')
71
72