Imported Upstream version 1.1.1
[platform/upstream/iotivity.git] / service / resource-encapsulation / examples / linux / 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 # linux sample app  build script (Sample Client & Sample Server)
23 ##
24 Import('env')
25
26 # Add third party libraries
27 lib_env = env.Clone()
28 SConscript(env.get('SRC_DIR') + '/service/third_party_libs.scons', 'lib_env')
29
30 sample_env = lib_env.Clone()
31
32 sample_env.AppendUnique(CXXFLAGS = ['-Wall', '-std=c++0x'])
33 sample_env.AppendUnique(LIBS = [
34     'coap',
35     'connectivity_abstraction',
36     'oc_logger',
37     'octbstack',
38     'oc',
39     'rcs_common',
40     'pthread'
41     ])
42 sample_env.AppendUnique(CPPPATH = ['../../include'])
43
44 if env.get('SECURED') == '1':
45     sample_env.AppendUnique(LIBS = ['tinydtls'])
46
47 if 'rt' in sample_env.get('LIBS'):
48     sample_env.Append(LIBS = ['rt'])
49
50 ######################################################################
51 # ##### Client #####
52 ######################################################################
53 client_env = sample_env.Clone()
54 client_env.AppendUnique(LIBS = 'rcs_client')
55
56 sampleResourceClient = client_env.Program('sampleResourceClient', 'SampleResourceClient.cpp')
57 nestedAttributesClient = client_env.Program('nestedAttributesClient', 'NestedAttributesClient.cpp')
58
59 ######################################################################
60 # ##### Server #####
61 ######################################################################
62 server_env = sample_env.Clone()
63 server_env.AppendUnique(LIBS = 'rcs_server')
64
65 sampleResourceServer = server_env.Program('sampleResourceServer', 'SampleResourceServer.cpp')
66 separateResponseServer = server_env.Program('separateResponseServer', 'SeparateResponseServer.cpp')
67 nestedAttributesServer = server_env.Program('nestedAttributesServer', 'NestedAttributesServer.cpp')
68
69 ######################################################################
70 # ##### Build the RE Secure Resource Example #####
71 ######################################################################
72 if env.get('SECURED') == '1':
73         SConscript('secureResourceExample/SConscript')