9070aeb357b3121b1b65ed3270fa1a4b6e20ca65
[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 # 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         liboctbstack_env.Replace(CC = env.get('CXX'))
37         liboctbstack_env.Replace(CFLAGS = env.get('CXXFLAGS'))
38
39 ######################################################################
40 # Build flags
41 ######################################################################
42 liboctbstack_env.PrependUnique(CPPPATH = [
43                 '../../extlibs/cjson/',
44                 '../../extlibs/timer/',
45                 'logger/include',
46                 'ocrandom/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 target_os not in ['windows', 'winrt']:
65         liboctbstack_env.AppendUnique(CFLAGS = ['-Wall'])
66
67 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
68
69 if target_os in ['android', 'linux', 'tizen']:
70         liboctbstack_env.PrependUnique(LIBS = ['connectivity_abstraction'])
71         if with_ra:
72                 liboctbstack_env.AppendUnique(LIBS = ['ra_xmpp'])
73
74 liboctbstack_env.AppendUnique(LIBS = ['coap', 'm'])
75
76 if target_os == 'tizen':
77     liboctbstack_env.ParseConfig("pkg-config --cflags --libs uuid")
78
79 if target_os not in ['android', 'arduino', 'windows', 'winrt']:
80         liboctbstack_env.AppendUnique(LIBS = ['pthread'])
81
82 if target_os == 'arduino':
83         liboctbstack_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
84 elif target_os not in ['darwin','ios']:
85         liboctbstack_env.AppendUnique(CFLAGS = ['-fPIC'])
86 if target_os in ['darwin', 'ios']:
87         env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
88         liboctbstack_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
89         liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
90 if target_os not in ['arduino']:
91         liboctbstack_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
92
93 if env.get('SECURED') == '1':
94         liboctbstack_env.AppendUnique(LIBS = ['tinydtls'])
95
96 if env.get('LOGGING'):
97         liboctbstack_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
98
99 liboctbstack_env.Append(LIBS = ['c_common'])
100
101 ######################################################################
102 # Source files and Targets
103 ######################################################################
104 OCTBSTACK_SRC = 'stack/src/'
105 liboctbstack_src = [
106         '../../extlibs/cjson/cJSON.c',
107         '../../extlibs/timer/timer.c',
108         OCTBSTACK_SRC + 'ocstack.c',
109         OCTBSTACK_SRC + 'ocpayload.c',
110         OCTBSTACK_SRC + 'ocpayloadparse.c',
111         OCTBSTACK_SRC + 'ocpayloadconvert.c',
112         OCTBSTACK_SRC + 'occlientcb.c',
113         OCTBSTACK_SRC + 'ocresource.c',
114         OCTBSTACK_SRC + 'ocobserve.c',
115         OCTBSTACK_SRC + 'ocserverrequest.c',
116         OCTBSTACK_SRC + 'occollection.c',
117         OCTBSTACK_SRC + 'oicgroup.c',
118         'logger/src/logger.c',
119         'ocrandom/src/ocrandom.c'
120         ]
121
122 liboctbstack_src.extend(env['cbor_files'])
123
124 if target_os in ['arduino','darwin','ios'] :
125         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
126         liboctbstack_env.InstallTarget(static_liboctbstack, 'liboctbstack')
127         liboctbstack_env.UserInstallTargetLib(static_liboctbstack, 'liboctbstack')
128         liboctbstack_env.UserInstallTargetHeader('stack/include/ocstackconfig.h', 'resource', 'ocstackconfig.h')
129         liboctbstack_env.UserInstallTargetHeader('stack/include/octypes.h', 'resource', 'octypes.h')
130 else:
131         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
132         shared_liboctbstack = liboctbstack_env.SharedLibrary('octbstack', liboctbstack_src)
133         liboctbstack_env.InstallTarget([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
134         liboctbstack_env.UserInstallTargetLib([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
135         liboctbstack_env.UserInstallTargetHeader('stack/include/ocstackconfig.h', 'resource', 'ocstackconfig.h')
136         liboctbstack_env.UserInstallTargetHeader('stack/include/octypes.h', 'resource', 'octypes.h')
137         liboctbstack_env.UserInstallTargetHeader('stack/include/ocstack.h', 'resource', 'ocstack.h')
138