871e7a94132142106323fcbeaaf0d43b61464a75
[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 with_upstream_libcoap = tools_env.get('WITH_UPSTREAM_LIBCOAP')
30 if with_upstream_libcoap == '1':
31     # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
32     tools_env.AppendUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
33 else:
34     # For bring up purposes only, the forked version will live here.
35     tools_env.AppendUnique(CPPPATH = ['../../connectivity/lib/libcoap-4.1.1/include'])
36
37 tools_env.PrependUnique(CPPPATH = ['../../../../extlibs/cjson',
38                                   '../../stack/include',
39                                   '../../stack/include/internal',
40                                   '../../logger/include',
41                                   '../../../oc_logger/include',
42                                   '../../connectivity/api',
43                                   '../../connectivity/inc/pkix',
44                                   '../include',
45                                   '../include/internal'
46                                   ])
47 tools_env.AppendUnique(CXXFLAGS = ['-O2', '-g', '-Wall', '-Wextra', '-std=c++0x'])
48 tools_env.AppendUnique(LIBPATH = [tools_env.get('BUILD_DIR')])
49 tools_env.AppendUnique(RPATH = [tools_env.get('BUILD_DIR')])
50 tools_env.PrependUnique(LIBS = ['oc', 'octbstack'])
51
52 ######################################################################
53 # Source files and Targets
54 ######################################################################
55 json2cbor = tools_env.Program('json2cbor', ['json2cbor.c'])
56 Alias("json2cbor", [json2cbor])
57 env.AppendTarget('json2cbor')