To build static libarary from CSDK
[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 (share library) build script
22 ##
23
24 Import('env')
25 import os
26
27 lib_env = env.Clone()
28 SConscript('#resource/third_party_libs.scons', 'lib_env')
29
30 libocsrm_env = lib_env.Clone()
31
32 target_os = libocsrm_env.get('TARGET_OS')
33 # As in the source code, it includes arduino Time library (C++)
34 # It requires compile the .c with g++
35 if target_os == 'arduino':
36         libocsrm_env.Replace(CC = libocsrm_env.get('CXX'))
37         libocsrm_env.Replace(CFLAGS = libocsrm_env.get('CXXFLAGS'))
38
39 ######################################################################
40 # Build flags
41 ######################################################################
42 with_upstream_libcoap = libocsrm_env.get('WITH_UPSTREAM_LIBCOAP')
43 if with_upstream_libcoap == '1':
44         # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
45         libocsrm_env.AppendUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
46 else:
47         # For bring up purposes only, the forked version will live here.
48         libocsrm_env.AppendUnique(CPPPATH = ['../connectivity/lib/libcoap-4.1.1/include'])
49
50 libocsrm_env.PrependUnique(CPPPATH = [
51                 '../../../extlibs/cjson/',
52                 '../../../extlibs/tinydtls/',
53                 '../logger/include',
54                 '../../c_common/ocrandom/include',
55                 '../stack/include',
56                 '../stack/include/internal',
57                 '../../oc_logger/include',
58                 '../connectivity/external/inc',
59                 '../connectivity/common/inc',
60                 '../connectivity/inc/pkix',
61                 '../connectivity/inc',
62                 '../connectivity/api',
63                 '../security/include',
64                 '../security/include/internal',
65                 '../security/provisioning/include'
66                 ])
67
68 if target_os not in ['arduino', 'windows']:
69         libocsrm_env.AppendUnique(CPPDEFINES  = ['WITH_POSIX', '_GNU_SOURCE'])
70         libocsrm_env.AppendUnique(CFLAGS = ['-std=c99', '-Wall'])
71
72 libocsrm_env.AppendUnique(LIBPATH = [libocsrm_env.get('BUILD_DIR')])
73 libocsrm_env.AppendUnique(LIBS = ['coap'])
74
75 if target_os == 'arduino':
76         libocsrm_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
77 elif target_os not in ['windows', 'msys_nt']:
78         libocsrm_env.AppendUnique(CFLAGS = ['-fPIC'])
79         libocsrm_env.AppendUnique(LIBS = ['m'])
80
81 if target_os in ['windows', 'msys_nt']:
82         libocsrm_env.AppendUnique(LIBPATH = [os.path.join(libocsrm_env.get('BUILD_DIR'), 'resource', 'oc_logger')])
83
84 if target_os in ['darwin', 'ios']:
85         libocsrm_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
86         libocsrm_env.AppendUnique(LIBPATH = [libocsrm_env.get('BUILD_DIR')])
87         libocsrm_env.AppendUnique(LIBS = ['coap'])
88
89 if env.get('LOGGING'):
90         libocsrm_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
91
92 if env.get('DTLS_WITH_X509') == '1':
93         libocsrm_env.AppendUnique(CPPDEFINES = ['__WITH_X509__'])
94
95 ######################################################################
96 # Source files and Targets
97 ######################################################################
98 OCSRM_SRC = 'src/'
99 libocsrm_src = [
100         OCSRM_SRC + 'secureresourcemanager.c',
101         OCSRM_SRC + 'resourcemanager.c',
102         OCSRM_SRC + 'aclresource.c',
103         OCSRM_SRC + 'verresource.c',
104         OCSRM_SRC + 'amaclresource.c',
105         OCSRM_SRC + 'amsmgr.c',
106         OCSRM_SRC + 'pstatresource.c',
107         OCSRM_SRC + 'doxmresource.c',
108         OCSRM_SRC + 'credresource.c',
109         OCSRM_SRC + 'svcresource.c',
110         OCSRM_SRC + 'pconfresource.c',
111         OCSRM_SRC + 'dpairingresource.c',
112         OCSRM_SRC + 'policyengine.c',
113         OCSRM_SRC + 'psinterface.c',
114         OCSRM_SRC + 'srmresourcestrings.c',
115         OCSRM_SRC + 'srmutility.c',
116         OCSRM_SRC + 'iotvticalendar.c',
117         OCSRM_SRC + 'base64.c',
118         OCSRM_SRC + 'directpairing.c'
119         ]
120
121 if libocsrm_env.get('SECURED') == '1':
122         libocsrm_src = libocsrm_src + [OCSRM_SRC + 'oxmpincommon.c', OCSRM_SRC + 'pbkdf2.c']
123
124 if target_os in ['windows', 'msys_nt']:
125         libocsrm_src  = libocsrm_src + [OCSRM_SRC + 'strptime.c']
126
127 if (env.get('DTLS_WITH_X509') == '1' or env.get('WITH_TCP') == True) and env.get('SECURED') == '1':
128         libocsrm_src  = libocsrm_src + [OCSRM_SRC + 'crlresource.c', OCSRM_SRC + 'pkix_interface.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_conf = Configure(libocsrm_env)
138 if libocsrm_conf.CheckFunc('strptime'):
139         libocsrm_conf.env.AppendUnique(CPPDEFINES = ['HAVE_STRPTIME'])
140 libocsrm_env = libocsrm_conf.Finish()
141
142 libocsrm = libocsrm_env.StaticLibrary('ocsrm', libocsrm_src)
143
144 libocsrm_env.InstallTarget(libocsrm, 'ocsrm')
145
146 if target_os in ['linux', 'android', 'tizen', 'msys_nt', 'windows'] and libocsrm_env.get('SECURED') == '1':
147         SConscript('provisioning/SConscript')
148
149 if target_os in ['linux'] and libocsrm_env.get('SECURED') == '1':
150         SConscript('tool/SConscript')