Fix linking of liboctbstack: conectivity_abstraction requires coap
[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 # 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'))
37
38 ######################################################################
39 # Build flags
40 ######################################################################
41 liboctbstack_env.PrependUnique(CPPPATH = [
42                 '../../extlibs/cjson/',
43                 '../../extlibs/timer/',
44                 'logger/include',
45                 'ocrandom/include',
46                 'ocmalloc/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                 'security/include',
54                 'security/include/internal',
55                 ])
56
57 if target_os not in ['arduino', 'windows', 'winrt']:
58         liboctbstack_env.AppendUnique(CPPDEFINES  = ['WITH_POSIX'])
59         liboctbstack_env.AppendUnique(CFLAGS = ['-std=c99'])
60
61 if target_os not in ['windows', 'winrt']:
62         liboctbstack_env.AppendUnique(CFLAGS = ['-Wall'])
63
64 liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
65
66 if target_os in ['android', 'linux']:
67         liboctbstack_env.AppendUnique(LIBS = ['connectivity_abstraction'])
68 liboctbstack_env.AppendUnique(LIBS = ['coap', 'm'])
69
70 if target_os not in ['android', 'arduino', 'windows', 'winrt']:
71         liboctbstack_env.AppendUnique(LIBS = ['pthread'])
72
73 if target_os == 'arduino':
74         liboctbstack_env.AppendUnique(CPPDEFINES = ['NDEBUG', 'WITH_ARDUINO'])
75 elif target_os not in ['darwin','ios']:
76         liboctbstack_env.AppendUnique(CFLAGS = ['-fPIC'])
77 if target_os in ['darwin', 'ios']:
78         liboctbstack_env.AppendUnique(CPPDEFINES = ['_DARWIN_C_SOURCE'])
79         liboctbstack_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
80
81 if env.get('SECURED') == '1':
82         liboctbstack_env.AppendUnique(LIBS = ['tinydtls'])
83
84 if env.get('LOGGING'):
85         liboctbstack_env.AppendUnique(CPPDEFINES = ['TB_LOG'])
86
87 ######################################################################
88 # Source files and Targets
89 ######################################################################
90 OCTBSTACK_SRC = 'stack/src/'
91 liboctbstack_src = [
92         '../../extlibs/cjson/cJSON.c',
93         '../../extlibs/timer/timer.c',
94         OCTBSTACK_SRC + 'ocstack.c',
95         OCTBSTACK_SRC + 'occlientcb.c',
96         OCTBSTACK_SRC + 'ocresource.c',
97         OCTBSTACK_SRC + 'ocobserve.c',
98         OCTBSTACK_SRC + 'ocserverrequest.c',
99         OCTBSTACK_SRC + 'occollection.c',
100         OCTBSTACK_SRC + 'oicgroup.c',
101         'security/src/ocsecurity.c',
102         'logger/src/logger.c',
103         'ocrandom/src/ocrandom.c',
104         'ocmalloc/src/ocmalloc.c'
105         ]
106 if target_os in ['arduino','darwin','ios'] :
107         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
108         liboctbstack_env.InstallTarget(static_liboctbstack, 'liboctbstack')
109 else:
110         static_liboctbstack = liboctbstack_env.StaticLibrary('octbstack', liboctbstack_src)
111         shared_liboctbstack = liboctbstack_env.SharedLibrary('octbstack', liboctbstack_src)
112         liboctbstack_env.InstallTarget([static_liboctbstack, shared_liboctbstack], 'liboctbstack')
113