Merge branch 'master' into simulator.
[platform/upstream/iotivity.git] / resource / csdk / SConscript
1 #******************************************************************
2 #
3 # Copyright 2014 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 ##
22 # liboctbstack (share library) build script
23 ##
24 Import('env')
25
26 lib_env = env.Clone()
27 SConscript(env.get('SRC_DIR') + '/resource/third_party_libs.scons', 'lib_env')
28
29 liboctbstack_env = lib_env.Clone()
30
31 target_os = env.get('TARGET_OS')
32 with_ra = env.get('WITH_RA')
33 with_ra_ibb = env.get('WITH_RA_IBB')
34 # As in the source code, it includes arduino Time library (C++)
35 # It requires compile the .c with g++
36 if target_os == 'arduino':
37         liboctbstack_env.Replace(CC = env.get('CXX'))
38         liboctbstack_env.Replace(CFLAGS = env.get('CXXFLAGS'))
39
40 ######################################################################
41 # Build flags
42 ######################################################################
43 liboctbstack_env.PrependUnique(CPPPATH = [
44                 '../../extlibs/cjson/',
45                 '../../extlibs/timer/',
46                 'logger/include',
47                 'stack/include',
48                 'stack/include/internal',
49                 '../oc_logger/include',
50                 'connectivity/lib/libcoap-4.1.1',
51                 'connectivity/inc',
52                 'connectivity/api',
53                 'connectivity/external/inc',
54                 'security/include',
55                 'security/include/internal',
56                 ])
57
58 liboctbstack_env.AppendUnique(LIBS = ['ocsrm'])
59
60 if target_os not in ['arduino', 'windows', 'winrt']:
61         liboctbstack_env.AppendUnique(CPPDEFINES  = ['WITH_POSIX'])
62         liboctbstack_env.AppendUnique(CFLAGS = ['-std=c99'])
63
64 if liboctbstack_env.get('ROUTING') == 'GW':
65         liboctbstack_env.AppendUnique(CPPDEFINES = ['ROUTING_GATEWAY'])
66 elif liboctbstack_env.get('ROUTING') == 'EP':
67         liboctbstack_env.AppendUnique(CPPDEFINES = ['ROUTING_EP'])
68
69 if target_os not in ['windows', 'winrt']:
70         liboctbstack_env.AppendUnique(CFLAGS = ['-Wall'])
71
72 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
73
74 if target_os in ['android', 'linux', 'tizen']:
75         liboctbstack_env.PrependUnique(LIBS = ['connectivity_abstraction'])
76
77         if with_ra_ibb:
78                 liboctbstack_env.AppendUnique(LIBS = liboctbstack_env['RALIBS'], LIBPATH = liboctbstack_env['RALIBPATH'], RPATH = liboctbstack_env['RARPATH'])
79         else :
80                 if with_ra:
81                         liboctbstack_env.AppendUnique(LIBS = ['ra_xmpp'])
82
83 liboctbstack_env.AppendUnique(LIBS = ['coap', 'm'])
84
85 if target_os in ['tizen', 'linux']:
86         liboctbstack_env.ParseConfig("pkg-config --cflags --libs uuid")
87
88 if target_os not in ['android', 'arduino', 'windows', 'winrt']:
89         liboctbstack_env.AppendUnique(LIBS = ['pthread'])
90
91 if target_os == 'arduino':
92         liboctbstack_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
93 elif target_os not in ['darwin','ios']:
94         liboctbstack_env.AppendUnique(CFLAGS = ['-fPIC'])
95 if target_os in ['darwin', 'ios']:
96         env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
97         liboctbstack_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
98         liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
99 if target_os not in ['arduino']:
100         liboctbstack_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
101
102 if env.get('SECURED') == '1':
103         liboctbstack_env.AppendUnique(LIBS = ['tinydtls'])
104
105 if env.get('LOGGING'):
106         liboctbstack_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
107
108 if env.get('DTLS_WITH_X509') == '1':
109         liboctbstack_env.AppendUnique(CPPDEFINES = ['__WITH_X509__'])
110
111 if env.get('WITH_RD') == '1':
112         liboctbstack_env.PrependUnique(CPPPATH = ['../../service/resource-directory/include'])
113         liboctbstack_env.AppendUnique(CPPDEFINES = ['-DWITH_RD'])
114         liboctbstack_env.AppendUnique(LIBS = ['resource_directory'])
115
116 liboctbstack_env.Append(LIBS = ['c_common'])
117
118 if liboctbstack_env.get('ROUTING') in ['GW', 'EP']:
119         liboctbstack_env.Prepend(LIBS = ['routingmanager'])
120
121 ######################################################################
122 # Source files and Targets
123 ######################################################################
124 OCTBSTACK_SRC = 'stack/src/'
125 liboctbstack_src = [
126         '../../extlibs/cjson/cJSON.c',
127         '../../extlibs/timer/timer.c',
128         OCTBSTACK_SRC + 'ocstack.c',
129         OCTBSTACK_SRC + 'ocpayload.c',
130         OCTBSTACK_SRC + 'ocpayloadparse.c',
131         OCTBSTACK_SRC + 'ocpayloadconvert.c',
132         OCTBSTACK_SRC + 'occlientcb.c',
133         OCTBSTACK_SRC + 'ocresource.c',
134         OCTBSTACK_SRC + 'ocobserve.c',
135         OCTBSTACK_SRC + 'ocserverrequest.c',
136         OCTBSTACK_SRC + 'occollection.c',
137         OCTBSTACK_SRC + 'oicgroup.c',
138         'logger/src/logger.c',
139         OCTBSTACK_SRC + "rdpayload.c"
140         ]
141
142 liboctbstack_src.extend(env['cbor_files'])
143
144 if target_os in ['arduino','darwin','ios'] :
145         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
146         liboctbstack_env.InstallTarget(static_liboctbstack, 'liboctbstack')
147         liboctbstack_env.UserInstallTargetLib(static_liboctbstack, 'liboctbstack')
148         liboctbstack_env.UserInstallTargetHeader('stack/include/ocstackconfig.h', 'resource', 'ocstackconfig.h')
149         liboctbstack_env.UserInstallTargetHeader('stack/include/octypes.h', 'resource', 'octypes.h')
150 else:
151         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
152         shared_liboctbstack = liboctbstack_env.SharedLibrary('octbstack', liboctbstack_src)
153         liboctbstack_env.InstallTarget([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
154         liboctbstack_env.UserInstallTargetLib([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
155         liboctbstack_env.UserInstallTargetHeader('stack/include/ocstackconfig.h', 'resource', 'ocstackconfig.h')
156         liboctbstack_env.UserInstallTargetHeader('stack/include/octypes.h', 'resource', 'octypes.h')