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 SConscript(env.get('SRC_DIR') + '/resource/third_party_libs.scons', 'lib_env')
29 liboctbstack_env = lib_env.Clone()
31 target_os = env.get('TARGET_OS')
32 # As in the source code, it includes arduino Time library (C++)
33 # It requires compile the .c with g++
34 if target_os == 'arduino':
35 liboctbstack_env.Replace(CC = env.get('CXX'))
36 liboctbstack_env.Replace(CFLAGS = env.get('CXXFLAGS'))
38 ######################################################################
40 ######################################################################
41 liboctbstack_env.PrependUnique(CPPPATH = [
42 '../../extlibs/cjson/',
43 '../../extlibs/timer/',
47 'stack/include/internal',
48 '../oc_logger/include',
49 'connectivity/lib/libcoap-4.1.1',
52 'connectivity/external/inc',
54 'security/include/internal',
57 liboctbstack_env.AppendUnique(LIBS = ['ocsrm'])
59 if target_os not in ['arduino', 'windows', 'winrt']:
60 liboctbstack_env.AppendUnique(CPPDEFINES = ['WITH_POSIX'])
61 liboctbstack_env.AppendUnique(CFLAGS = ['-std=c99'])
63 if target_os not in ['windows', 'winrt']:
64 liboctbstack_env.AppendUnique(CFLAGS = ['-Wall'])
66 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
68 if target_os in ['android', 'linux', 'tizen']:
69 liboctbstack_env.AppendUnique(LIBS = ['connectivity_abstraction'])
70 liboctbstack_env.AppendUnique(LIBS = ['coap', 'm'])
72 if target_os == 'tizen':
73 liboctbstack_env.ParseConfig("pkg-config --cflags --libs uuid")
75 if target_os not in ['android', 'arduino', 'windows', 'winrt']:
76 liboctbstack_env.AppendUnique(LIBS = ['pthread'])
78 if target_os == 'arduino':
79 liboctbstack_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
80 elif target_os not in ['darwin','ios']:
81 liboctbstack_env.AppendUnique(CFLAGS = ['-fPIC'])
82 if target_os in ['darwin', 'ios']:
83 env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
84 liboctbstack_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
85 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
86 if target_os not in ['arduino']:
87 liboctbstack_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
89 if env.get('SECURED') == '1':
90 liboctbstack_env.AppendUnique(LIBS = ['tinydtls'])
92 if env.get('LOGGING'):
93 liboctbstack_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
95 liboctbstack_env.Append(LIBS = ['c_common'])
97 ######################################################################
98 # Source files and Targets
99 ######################################################################
100 OCTBSTACK_SRC = 'stack/src/'
102 '../../extlibs/cjson/cJSON.c',
103 '../../extlibs/timer/timer.c',
104 OCTBSTACK_SRC + 'ocstack.c',
105 OCTBSTACK_SRC + 'ocpayload.c',
106 OCTBSTACK_SRC + 'ocpayloadparse.c',
107 OCTBSTACK_SRC + 'ocpayloadconvert.c',
108 OCTBSTACK_SRC + 'occlientcb.c',
109 OCTBSTACK_SRC + 'ocresource.c',
110 OCTBSTACK_SRC + 'ocobserve.c',
111 OCTBSTACK_SRC + 'ocserverrequest.c',
112 OCTBSTACK_SRC + 'occollection.c',
113 OCTBSTACK_SRC + 'oicgroup.c',
114 'logger/src/logger.c',
115 'ocrandom/src/ocrandom.c'
118 liboctbstack_src.extend(env['cbor_files'])
120 if target_os in ['arduino','darwin','ios'] :
121 static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
122 liboctbstack_env.InstallTarget(static_liboctbstack, 'liboctbstack')
123 liboctbstack_env.UserInstallTargetLib(static_liboctbstack, 'liboctbstack')
125 static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
126 shared_liboctbstack = liboctbstack_env.SharedLibrary('octbstack', liboctbstack_src)
127 liboctbstack_env.InstallTarget([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
128 liboctbstack_env.UserInstallTargetLib([static_liboctbstack, shared_liboctbstack], 'liboctbstack')