[Resource-Encapsulation] Removed Linux Secured samples.
[contrib/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('#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 = [
43     '../../include',
44     '#/resource/csdk/include',
45     '#/resource/csdk/stack/include',
46     '#/resource/include',
47     '#/resource/oc_logger/include'
48 ])
49
50 if env.get('SECURED') == '1':
51     sample_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509', 'mbedcrypto'])
52
53 if 'rt' in sample_env.get('LIBS'):
54     sample_env.Append(LIBS = ['rt'])
55
56 ######################################################################
57 # ##### Client #####
58 ######################################################################
59 client_env = sample_env.Clone()
60 client_env.AppendUnique(LIBS = 'rcs_client')
61
62 sampleResourceClient = client_env.Program('sampleResourceClient', 'SampleResourceClient.cpp')
63 nestedAttributesClient = client_env.Program('nestedAttributesClient', 'NestedAttributesClient.cpp')
64
65 ######################################################################
66 # ##### Server #####
67 ######################################################################
68 server_env = sample_env.Clone()
69 server_env.AppendUnique(LIBS = 'rcs_server')
70
71 sampleResourceServer = server_env.Program('sampleResourceServer', 'SampleResourceServer.cpp')
72 separateResponseServer = server_env.Program('separateResponseServer', 'SeparateResponseServer.cpp')
73 nestedAttributesServer = server_env.Program('nestedAttributesServer', 'NestedAttributesServer.cpp')