Imported Upstream version 1.0.1
[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                 '../c_common/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 if target_os == 'tizen':
62         oclib_env.AppendUnique(CPPDEFINES = ['__TIZEN__'])
63
64 ######################################################################
65 # Source files and Targets
66 ######################################################################
67 oclib_src = [
68                 'OCPlatform.cpp',
69                 'OCPlatform_impl.cpp',
70                 'OCResource.cpp',
71                 'OCUtilities.cpp',
72                 'OCException.cpp',
73                 'OCRepresentation.cpp',
74                 'InProcServerWrapper.cpp',
75                 'InProcClientWrapper.cpp',
76                 'OCResourceRequest.cpp'
77         ]
78
79 oclib = oclib_env.SharedLibrary('oc', oclib_src)
80 oclib_env.InstallTarget(oclib, 'liboc')
81 oclib_env.UserInstallTargetLib(oclib, 'liboc')
82
83 src_dir = env.get('SRC_DIR')
84
85 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCApi.h', 'resource', 'OCApi.h')
86 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCPlatform.h', 'resource', 'OCPlatform.h')
87 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCRepresentation.h', 'resource', 'OCRepresentation.h')
88 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResource.h', 'resource', 'OCResource.h')
89 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResourceRequest.h', 'resource', 'OCResourceRequest.h')
90 oclib_env.UserInstallTargetHeader(src_dir + '/resource/include/OCResourceResponse.h', 'resource', 'OCResourceResponse.h')
91
92 # Add Provisioning library
93 if target_os in ['linux', 'android'] and env.get('SECURED') == '1':
94         SConscript('../provisioning/SConscript')