TLS support
[platform/upstream/iotivity.git] / resource / csdk / security / tool / 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 Import('env')
22
23 tools_env = env.Clone()
24 src_dir = tools_env.get('SRC_DIR')
25
26 ######################################################################
27 # Build flags
28 ######################################################################
29 tools_env.PrependUnique(CPPPATH = ['../../../../extlibs/cjson',
30                                   '../../stack/include',
31                                   '../../stack/include/internal',
32                                   '../../logger/include',
33                                   '../../../oc_logger/include',
34                                   '../../connectivity/api',
35                                   '../../connectivity/inc/pkix',
36                                   '../include',
37                                   '../include/internal',
38                                   '../../connectivity/lib/libcoap-4.1.1',
39
40                                   ])
41 tools_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra', '-std=c++0x'])
42 tools_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
43 tools_env.AppendUnique(RPATH = [env.get('BUILD_DIR')])
44 tools_env.PrependUnique(LIBS = ['oc', 'octbstack'])
45
46 ######################################################################
47 # Source files and Targets
48 ######################################################################
49 json2cbor = tools_env.Program('json2cbor', ['json2cbor.c'])
50 Alias("json2cbor", [json2cbor])
51 env.AppendTarget('json2cbor')