Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / service / coap-http-proxy / samples / SConscript
1 #******************************************************************
2 #
3 # Copyright 2016 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 # CoAP-HTTP-Proxy Sample Apps build script
23 ##
24
25 Import('env')
26
27 lib_env = env.Clone()
28 SConscript('#service/third_party_libs.scons', 'lib_env')
29
30 proxy_sample_app_env = lib_env.Clone()
31
32 target_os = env.get('TARGET_OS')
33 ######################################################################
34 # Build flags
35 ######################################################################
36 proxy_sample_app_env.AppendUnique(CPPPATH = ['../include'])
37
38 if target_os not in ['windows']:
39     proxy_sample_app_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra', '-std=c++0x'])
40 proxy_sample_app_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
41 proxy_sample_app_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
42 proxy_sample_app_env.PrependUnique(LIBS = ['coap_http_proxy', 'oc', 'octbstack', 'curl', 'connectivity_abstraction'])
43
44 if env.get('SECURED') == '1':
45     proxy_sample_app_env.AppendUnique(LIBS = ['mbedtls', 'mbedx509', 'mbedcrypto'])
46
47 ####################################################################
48 # Source files and Targets
49 ######################################################################
50 proxy_server = proxy_sample_app_env.Program('proxy_main', 'proxy_main.c')
51 proxy_client = proxy_sample_app_env.Program('proxy_client', 'proxy_client.c')
52 Alias("coap_http_proxy", [proxy_server])
53
54 env.AppendTarget('coap_http_proxy')