[IOT-1911] Make resource/csdk/stack W4 compliant.
[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         libocsrm_env.AppendUnique(CCFLAGS=['/W4', '/WX'])
63
64 if target_os in ['linux', 'android', 'tizen', 'msys_nt', 'windows'] and libocsrm_env.get('SECURED') == '1':
65         SConscript('provisioning/SConscript', 'libocsrm_env')
66
67 if target_os in ['linux', 'windows', 'darwin'] and libocsrm_env.get('SECURED') == '1':
68         SConscript('tool/SConscript', 'libocsrm_env')
69
70 # As in the source code, it includes arduino Time library (C++)
71 # It requires compile the .c with g++
72 if target_os == 'arduino':
73         libocsrm_env.Replace(CC = libocsrm_env.get('CXX'))
74         libocsrm_env.Replace(CFLAGS = libocsrm_env.get('CXXFLAGS'))
75
76 if target_os not in ['arduino', 'windows']:
77         libocsrm_env.AppendUnique(CPPDEFINES  = ['WITH_POSIX', '_GNU_SOURCE'])
78         libocsrm_env.AppendUnique(CFLAGS = ['-std=c99', '-Wall'])
79
80 libocsrm_env.AppendUnique(LIBPATH = [libocsrm_env.get('BUILD_DIR')])
81 libocsrm_env.AppendUnique(LIBS = ['coap'])
82
83 if target_os == 'arduino':
84         libocsrm_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
85 elif target_os not in ['windows', 'msys_nt']:
86         libocsrm_env.AppendUnique(CFLAGS = ['-fPIC'])
87         libocsrm_env.AppendUnique(LIBS = ['m'])
88
89 if target_os in ['darwin', 'ios']:
90         libocsrm_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
91
92 if env.get('LOGGING'):
93         libocsrm_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
94
95 if env.get('MULTIPLE_OWNER') == '1':
96         libocsrm_env.AppendUnique(CPPDEFINES=['MULTIPLE_OWNER'])
97
98 ######################################################################
99 # Source files and Targets
100 ######################################################################
101 OCSRM_SRC = 'src/'
102 libocsrm_src = [
103         OCSRM_SRC + 'secureresourcemanager.c',
104         OCSRM_SRC + 'resourcemanager.c',
105         OCSRM_SRC + 'aclresource.c',
106         OCSRM_SRC + 'verresource.c',
107         OCSRM_SRC + 'amaclresource.c',
108         OCSRM_SRC + 'pstatresource.c',
109         OCSRM_SRC + 'doxmresource.c',
110         OCSRM_SRC + 'credresource.c',
111         OCSRM_SRC + 'pconfresource.c',
112         OCSRM_SRC + 'dpairingresource.c',
113         OCSRM_SRC + 'policyengine.c',
114         OCSRM_SRC + 'psinterface.c',
115         OCSRM_SRC + 'srmresourcestrings.c',
116         OCSRM_SRC + 'srmutility.c',
117         OCSRM_SRC + 'iotvticalendar.c',
118         OCSRM_SRC + 'base64.c',
119         OCSRM_SRC + 'directpairing.c'
120         ]
121
122 if libocsrm_env.get('SECURED') == '1':
123         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'oxmpincommon.c', OCSRM_SRC + 'pbkdf2.c']
124         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'crlresource.c', OCSRM_SRC + 'pkix_interface.c']
125         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'oxmverifycommon.c']
126
127 if target_os in ['windows', 'msys_nt']:
128         libocsrm_src  = libocsrm_src + [OCSRM_SRC + 'strptime.c']
129
130 libocsrm_src.extend(env['cbor_files'])
131
132 # Insert a hack for Arduino, whose compiler may not support all defines expected
133 # by tinycbor
134 if target_os in ['arduino']:
135         libocsrm_env.AppendUnique(CPPDEFINES = ['INT64_MAX=0x7FFFFFFFFFFFFFFF'])
136
137 libocsrm = libocsrm_env.StaticLibrary('ocsrm', libocsrm_src)
138
139 libocsrm_env.InstallTarget(libocsrm, 'ocsrm')