1 #******************************************************************
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
22 # liboctbstack (share library) build script
27 liboctbstack_env = env.Clone()
30 SConscript('samples/SConscript', exports = { 'stacksamples_env' : liboctbstack_env })
32 SConscript('#resource/third_party_libs.scons', exports = { 'lib_env' : liboctbstack_env })
34 target_os = env.get('TARGET_OS')
35 rd_mode = env.get('RD_MODE')
36 with_ra = env.get('WITH_RA')
37 with_ra_ibb = env.get('WITH_RA_IBB')
38 with_tcp = env.get('WITH_TCP')
39 with_cloud = env.get('WITH_CLOUD')
40 with_mq = env.get('WITH_MQ')
41 # As in the source code, it includes arduino Time library (C++)
42 # It requires compile the .c with g++
43 if target_os == 'arduino':
44 liboctbstack_env.Replace(CC = env.get('CXX'))
45 liboctbstack_env.Replace(CFLAGS = env.get('CXXFLAGS'))
47 ######################################################################
49 ######################################################################
50 with_upstream_libcoap = liboctbstack_env.get('WITH_UPSTREAM_LIBCOAP')
51 if with_upstream_libcoap == '1':
52 # For bring up purposes only, we manually copy the forked version to where the unforked version is downloaded.
53 liboctbstack_env.PrependUnique(CPPPATH = ['#extlibs/libcoap/libcoap/include'])
55 # For bring up purposes only, the forked version will live here.
56 liboctbstack_env.PrependUnique(CPPPATH = ['#resource/csdk/connectivity/lib/libcoap-4.1.1/include'])
58 liboctbstack_env.PrependUnique(CPPPATH = [
60 '#resource/c_common/ocatomic/include',
61 '#resource/csdk/logger/include',
62 '#resource/csdk/include',
65 '#resource/oc_logger/include',
66 '#resource/csdk/connectivity/common/inc',
67 '#resource/csdk/connectivity/inc',
68 '#resource/csdk/connectivity/inc/pkix',
69 '#resource/csdk/connectivity/api',
70 '#resource/csdk/connectivity/external/inc',
71 '#resource/csdk/security/include',
72 '#resource/csdk/security/include/internal',
73 '#resource/csdk/security/provisioning/include',
77 liboctbstack_env.AppendUnique(CPPDEFINES = ['MQ_SUBSCRIBER', 'WITH_MQ'])
79 liboctbstack_env.AppendUnique(CPPDEFINES = ['MQ_PUBLISHER', 'WITH_MQ'])
80 if 'BROKER' in with_mq:
81 liboctbstack_env.AppendUnique(CPPDEFINES = ['MQ_BROKER', 'WITH_MQ'])
83 if target_os not in ['arduino', 'windows']:
84 liboctbstack_env.AppendUnique(CPPDEFINES = ['WITH_POSIX', '_GNU_SOURCE'])
85 liboctbstack_env.AppendUnique(CFLAGS = ['-std=c99'])
87 if liboctbstack_env.get('ROUTING') == 'GW':
88 liboctbstack_env.AppendUnique(CPPDEFINES = ['ROUTING_GATEWAY'])
89 elif liboctbstack_env.get('ROUTING') == 'EP':
90 liboctbstack_env.AppendUnique(CPPDEFINES = ['ROUTING_EP'])
92 if target_os not in ['windows']:
93 liboctbstack_env.AppendUnique(CFLAGS = ['-Wall'])
95 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
97 liboctbstack_env.PrependUnique(LIBS = ['ocsrm', 'coap', 'timer'])
99 if target_os in ['linux'] and liboctbstack_env.get('SIMULATOR', False):
100 liboctbstack_env.Append( RPATH = liboctbstack_env.Literal('\\$$ORIGIN'))
102 if env.get('SECURED') == '1':
103 liboctbstack_env.AppendUnique(LIBS = ['mbedtls','mbedx509','mbedcrypto'])
105 if target_os in ['android', 'linux', 'tizen', 'msys_nt', 'windows']:
106 liboctbstack_env.PrependUnique(LIBS = ['connectivity_abstraction'])
109 liboctbstack_env.AppendUnique(LIBS = liboctbstack_env['RALIBS'], LIBPATH = liboctbstack_env['RALIBPATH'], RPATH = liboctbstack_env['RARPATH'])
112 liboctbstack_env.AppendUnique(LIBS = ['ra_xmpp'])
114 if target_os not in ['windows', 'msys_nt']:
115 liboctbstack_env.AppendUnique(LIBS = ['m'])
117 liboctbstack_env.AppendUnique(CCFLAGS=['/W3', '/WX'])
118 # octbstack.def specifies the list of functions exported by octbstack.dll.
119 liboctbstack_env.Replace(WINDOWS_INSERT_DEF = ['1'])
121 if env.get('SECURED') != '1':
122 liboctbstack_env.Textfile(target = 'octbstack.def', source = [File('octbstack_product.def')])
124 # octbstack.dll is exporting ocpmapi APIs on Windows - there is no ocpmapi.dll.
125 liboctbstack_env.PrependUnique(LIBS = ['ocpmapi'])
128 liboctbstack_env.Textfile(target = 'octbstack_temp.def', source = [File('octbstack_product.def'), File('octbstack_product_with_tcp.def')])
130 liboctbstack_env.Textfile(target = 'octbstack_temp.def', source = [File('octbstack_product.def')])
132 if env.get('MULTIPLE_OWNER') == '1':
133 liboctbstack_env.Textfile(target = 'octbstack.def', source = [File('octbstack_temp.def'), File('octbstack_product_secured.def'), File('octbstack_product_secured_mot.def')])
135 liboctbstack_env.Textfile(target = 'octbstack.def', source = [File('octbstack_temp.def'), File('octbstack_product_secured.def')])
137 if target_os in ['tizen', 'linux']:
138 liboctbstack_env.ParseConfig("pkg-config --cflags --libs uuid")
139 liboctbstack_env.ParseConfig('pkg-config --cflags --libs sqlite3')
141 if target_os == 'arduino':
142 liboctbstack_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
143 elif target_os not in ['darwin','ios', 'msys_nt', 'windows']:
144 liboctbstack_env.AppendUnique(CFLAGS = ['-fPIC'])
145 if target_os in ['darwin', 'ios']:
146 env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
147 liboctbstack_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
148 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
149 if target_os not in ['arduino', 'windows']:
150 liboctbstack_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
151 if target_os == 'android':
152 liboctbstack_env.AppendUnique(LINKFLAGS = ['-Wl,-soname,liboctbstack.so'])
154 if env.get('LOGGING'):
155 liboctbstack_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
157 liboctbstack_env.Append(LIBS = ['c_common'])
159 if liboctbstack_env.get('ROUTING') in ['GW', 'EP']:
160 liboctbstack_env.Prepend(LIBS = ['routingmanager'])
162 if 'CLIENT' in rd_mode or 'SERVER' in rd_mode:
163 liboctbstack_env.PrependUnique(CPPPATH = ['#resource/csdk/resource-directory/include'])
165 if target_os in ['windows']:
166 liboctbstack_env.AppendUnique(LIBS = ['sqlite3'])
168 if 'CLIENT' in rd_mode:
169 liboctbstack_env.AppendUnique(CPPDEFINES = ['RD_CLIENT'])
171 if 'SERVER' in rd_mode:
172 liboctbstack_env.AppendUnique(CPPDEFINES = ['RD_SERVER'])
173 if target_os in ['tizen']:
174 liboctbstack_env.ParseConfig('pkg-config --cflags --libs sqlite3')
176 liboctbstack_env.AppendUnique(CPPPATH = ['#extlibs/sqlite3'])
178 ######################################################################
179 # Source files and Targets
180 ######################################################################
181 OCTBSTACK_SRC = 'src/'
183 OCTBSTACK_SRC + 'ocstack.c',
184 OCTBSTACK_SRC + 'ocpayload.c',
185 OCTBSTACK_SRC + 'ocpayloadparse.c',
186 OCTBSTACK_SRC + 'ocpayloadconvert.c',
187 OCTBSTACK_SRC + 'occlientcb.c',
188 OCTBSTACK_SRC + 'ocresource.c',
189 OCTBSTACK_SRC + 'ocobserve.c',
190 OCTBSTACK_SRC + 'ocserverrequest.c',
191 OCTBSTACK_SRC + 'occollection.c',
192 OCTBSTACK_SRC + 'oicgroup.c',
193 OCTBSTACK_SRC + 'ocendpoint.c'
197 liboctbstack_src.append(OCTBSTACK_SRC + 'oickeepalive.c')
198 if with_cloud == True:
199 liboctbstack_src.append(OCTBSTACK_SRC + 'occonnectionmanager.c')
201 if 'SERVER' in rd_mode:
202 liboctbstack_src.append(OCTBSTACK_SRC + 'oicresourcedirectory.c')
203 if target_os not in ['linux', 'tizen', 'windows']:
204 liboctbstack_src.append('#extlibs/sqlite3/sqlite3.c')
206 if target_os in ['linux']:
207 # Linux uses a Shared library because SCons chooses the shared library on Linux
208 # when only 'octbstack' is added to the LIBS.
209 # TODO: Switch Linux to use a Static library for testing like every other OS.
210 test_liboctbstack = liboctbstack_env.SharedLibrary('octbstack_test', liboctbstack_src)
212 test_liboctbstack = liboctbstack_env.StaticLibrary('octbstack_test', liboctbstack_src)
214 octbstack_libs = Flatten(test_liboctbstack)
216 if target_os in ['windows', 'msys_nt']:
217 # Avoid a name conflict with the octbstack.lib target of the SharedLibrary.
218 static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack_static', liboctbstack_src)
220 static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
222 octbstack_libs += Flatten(static_liboctbstack)
224 if target_os not in ['arduino','darwin','ios'] :
225 shared_liboctbstack = liboctbstack_env.SharedLibrary('octbstack', liboctbstack_src)
226 octbstack_libs += Flatten(shared_liboctbstack)
227 liboctbstack_env.UserInstallTargetHeader('include/ocstack.h', 'resource', 'ocstack.h')
228 liboctbstack_env.UserInstallTargetHeader('include/ocpresence.h', 'resource', 'ocpresence.h')
230 liboctbstack_env.InstallTarget(octbstack_libs, 'octbstack')
231 liboctbstack_env.UserInstallTargetLib(octbstack_libs, 'octbstack')
233 liboctbstack_env.UserInstallTargetHeader('include/ocstackconfig.h', 'resource', 'ocstackconfig.h')
234 liboctbstack_env.UserInstallTargetHeader('include/ocpayload.h', 'resource', 'ocpayload.h')