0310f3291b2a019c6056155dadac87cfd314aea8
[platform/upstream/iotivity.git] / resource / src / 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 # OCLib (share library) build script
23 ##
24 Import('env')
25
26 # Add third party libraries
27 lib_env = env.Clone()
28 SConscript(env.get('SRC_DIR') + '/resource/third_party_libs.scons', 'lib_env')
29
30 oclib_env = lib_env.Clone()
31 ######################################################################
32 # Build flags
33 ######################################################################
34 oclib_env.AppendUnique(CPPPATH = [
35                 '../include/',
36                 '../csdk/stack/include',
37                 '../csdk/ocrandom/include',
38                 '../csdk/logger/include',
39                 '../oc_logger/include',
40                 '../csdk/connectivity/lib/libcoap-4.1.1'
41                 ])
42
43 oclib_env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
44
45 oclib_env.AppendUnique(LIBS = ['octbstack', 'oc_logger'])
46
47 target_os = env.get('TARGET_OS')
48 if target_os == 'linux':
49         oclib_env.AppendUnique(LIBS = ['pthread'])
50
51 if target_os not in ['windows', 'winrt']:
52         oclib_env.AppendUnique(CXXFLAGS = ['-std=c++0x', '-Wall', '-fPIC'])
53
54 if target_os not in ['darwin', 'ios', 'windows', 'winrt']:
55         oclib_env.AppendUnique(LINKFLAGS = ['-Wl,--no-undefined'])
56
57 if target_os == 'android':
58         oclib_env.AppendUnique(CXXFLAGS = ['-frtti', '-fexceptions'])
59         oclib_env.AppendUnique(LIBS = ['boost_thread', 'gnustl_shared', 'log'])
60
61 ######################################################################
62 # Source files and Targets
63 ######################################################################
64 oclib_src = [
65                 'OCPlatform.cpp',
66                 'OCPlatform_impl.cpp',
67                 'OCResource.cpp',
68                 'OCUtilities.cpp',
69                 'OCException.cpp',
70                 'OCRepresentation.cpp',
71                 'InProcServerWrapper.cpp',
72                 'InProcClientWrapper.cpp',
73                 'OCResourceRequest.cpp'
74         ]
75
76 oclib = oclib_env.SharedLibrary('oc', oclib_src)
77 oclib_env.InstallTarget(oclib, 'liboc')
78 oclib_env.UserInstallTargetLib(oclib, 'liboc')
79
80 src_dir = env.get('SRC_DIR')
81
82 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCApi.h', 'resource', 'OCApi.h')
83 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCPlatform.h', 'resource', 'OCPlatform.h')
84 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCRepresentation.h', 'resource', 'OCRepresentation.h')
85 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResource.h', 'resource', 'OCResource.h')
86 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResourceRequest.h', 'resource', 'OCResourceRequest.h')
87 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResourceResponse.h', 'resource', 'OCResourceResponse.h')
88
89 # Add Provisioning library
90 if target_os in ['linux', 'android'] and env.get('SECURED') == '1':
91         SConscript('../provisioning/SConscript')