5eb8d2bba8a3fc43ca9df4b350cb2050053b34de
[platform/upstream/iotivity.git] / resource / csdk / security / SConscript
1 # //******************************************************************
2 # //
3 # // Copyright 2015 Intel Mobile Communications GmbH 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 # libocsrm (static library) build script
22 ##
23
24 Import('env')
25 import os
26
27 libocsrm_env = env.Clone()
28
29 target_os = libocsrm_env.get('TARGET_OS')
30
31 ######################################################################
32 # Build flags
33 ######################################################################
34 with_upstream_libcoap = libocsrm_env.get('WITH_UPSTREAM_LIBCOAP')
35 if with_upstream_libcoap == '1':
36         # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
37         libocsrm_env.AppendUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
38 else:
39         # For bring up purposes only, the forked version will live here.
40         libocsrm_env.AppendUnique(CPPPATH = ['#/resource/csdk/connectivity/lib/libcoap-4.1.1/include'])
41
42 libocsrm_env.PrependUnique(CPPPATH = [
43                 '#/extlibs/mbedtls/mbedtls/include',
44                 '#/resource/csdk/logger/include',
45                 '#/resource/c_common/ocrandom/include',
46                 '#/resource/csdk/include',
47                 '#/resource/csdk/stack/include',
48                 '#/resource/csdk/stack/include/internal',
49                 '#/resource/oc_logger/include',
50                 '#/resource/csdk/connectivity/external/inc',
51                 '#/resource/csdk/connectivity/common/inc',
52                 '#/resource/csdk/connectivity/inc',
53                 '#/resource/csdk/connectivity/api',
54                 '#/resource/csdk/security/include',
55                 '#/resource/csdk/security/include/internal',
56                 '#/resource/csdk/security/provisioning/include',
57                 '#/extlibs/mbedtls/mbedtls/include'
58                 ])
59
60 if target_os in ['windows', 'msys_nt']:
61         libocsrm_env.AppendUnique(LIBPATH = [os.path.join(libocsrm_env.get('BUILD_DIR'), 'resource', 'oc_logger')])
62     # Enable W4 but disable the following warning:
63     #  - warning C4232: nonstandard extension used: 'read': address of dllimport 'fread' is not static, identity not guaranteed
64     #    - fread, frwrite, etc are provided by the platform and cannot be changed.
65         libocsrm_env.AppendUnique(CCFLAGS=['/wd4232', '/W4', '/WX'])
66
67 if target_os in ['linux', 'android', 'tizen', 'msys_nt', 'windows'] and libocsrm_env.get('SECURED') == '1':
68         SConscript('provisioning/SConscript', 'libocsrm_env')
69
70 if target_os in ['linux', 'windows', 'darwin'] and libocsrm_env.get('SECURED') == '1':
71         SConscript('tool/SConscript', 'libocsrm_env')
72
73 # As in the source code, it includes arduino Time library (C++)
74 # It requires compile the .c with g++
75 if target_os == 'arduino':
76         libocsrm_env.Replace(CC = libocsrm_env.get('CXX'))
77         libocsrm_env.Replace(CFLAGS = libocsrm_env.get('CXXFLAGS'))
78
79 if target_os not in ['arduino', 'windows']:
80         libocsrm_env.AppendUnique(CPPDEFINES  = ['WITH_POSIX', '_GNU_SOURCE'])
81         libocsrm_env.AppendUnique(CFLAGS = ['-std=c99', '-Wall'])
82
83 libocsrm_env.AppendUnique(LIBPATH = [libocsrm_env.get('BUILD_DIR')])
84 libocsrm_env.AppendUnique(LIBS = ['coap'])
85
86 if target_os == 'arduino':
87         libocsrm_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
88 elif target_os not in ['windows', 'msys_nt']:
89         libocsrm_env.AppendUnique(CFLAGS = ['-fPIC'])
90         libocsrm_env.AppendUnique(LIBS = ['m'])
91
92 if target_os in ['darwin', 'ios']:
93         libocsrm_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
94
95 if env.get('LOGGING'):
96         libocsrm_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
97
98 if env.get('MULTIPLE_OWNER') == '1':
99         libocsrm_env.AppendUnique(CPPDEFINES=['MULTIPLE_OWNER'])
100
101 ######################################################################
102 # Source files and Targets
103 ######################################################################
104 OCSRM_SRC = 'src/'
105 libocsrm_src = [
106         OCSRM_SRC + 'secureresourcemanager.c',
107         OCSRM_SRC + 'resourcemanager.c',
108         OCSRM_SRC + 'aclresource.c',
109         OCSRM_SRC + 'verresource.c',
110         OCSRM_SRC + 'amaclresource.c',
111         OCSRM_SRC + 'pstatresource.c',
112         OCSRM_SRC + 'doxmresource.c',
113         OCSRM_SRC + 'credresource.c',
114         OCSRM_SRC + 'pconfresource.c',
115         OCSRM_SRC + 'dpairingresource.c',
116         OCSRM_SRC + 'policyengine.c',
117         OCSRM_SRC + 'psinterface.c',
118         OCSRM_SRC + 'srmresourcestrings.c',
119         OCSRM_SRC + 'srmutility.c',
120         OCSRM_SRC + 'iotvticalendar.c',
121         OCSRM_SRC + 'base64.c',
122         OCSRM_SRC + 'directpairing.c'
123         ]
124
125 if libocsrm_env.get('SECURED') == '1':
126         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'oxmpincommon.c', OCSRM_SRC + 'pbkdf2.c']
127         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'crlresource.c', OCSRM_SRC + 'pkix_interface.c']
128         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'oxmverifycommon.c']
129
130 if target_os in ['windows', 'msys_nt']:
131         libocsrm_src  = libocsrm_src + [OCSRM_SRC + 'strptime.c']
132
133 libocsrm_src.extend(env['cbor_files'])
134
135 # Insert a hack for Arduino, whose compiler may not support all defines expected
136 # by tinycbor
137 if target_os in ['arduino']:
138         libocsrm_env.AppendUnique(CPPDEFINES = ['INT64_MAX=0x7FFFFFFFFFFFFFFF'])
139
140 libocsrm = libocsrm_env.StaticLibrary('ocsrm', libocsrm_src)
141
142 libocsrm_env.InstallTarget(libocsrm, 'ocsrm')