1 #******************************************************************
3 # Copyright 2014 Samsung Electronics All Rights Reserved.
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 ######################################################################
22 # This script manages third party libraries
24 #Note: The paths must keep consistent with oic-resource
25 ######################################################################
29 Import('env', 'lib_env')
31 target_os = env.get('TARGET_OS')
32 target_arch = env.get('TARGET_ARCH')
33 src_dir = env.get('SRC_DIR')
35 resource_path = src_dir + '/resource'
37 ######################################################################
38 # Check dependent packages (Linux only)
39 ######################################################################
40 if target_os in ['linux', 'tizen']:
41 if not env.GetOption('help'):
42 if not target_arch == platform.machine():
44 *********************************** Warning ***********************************
45 * You are trying cross build, please make sure (%s) version libraries are
47 *******************************************************************************
50 conf = Configure(lib_env)
52 if target_os not in ['tizen'] and not conf.CheckLib('boost_thread', language='C++'):
53 print 'Did not find boost_thread, exiting!'
56 if target_os not in ['tizen'] and not conf.CheckLib('boost_system', language='C++'):
57 print 'Did not find boost_system, exiting!'
60 lib_env = conf.Finish()
62 ######################################################################
63 # The 'include' path of external libraries
64 ######################################################################
65 lib_env.AppendUnique(CPPPATH = [
67 resource_path + '/include' ,
68 resource_path + '/oc_logger/include',
69 resource_path + '/csdk/stack/include',
70 resource_path + '/c_common/ocrandom/include',
71 resource_path + '/csdk/logger/include'
74 ######################################################################
75 # The path of third party libraries binary
76 ######################################################################
77 if target_os == 'android':
78 if target_arch == 'armeabi-v7a-hard':
79 target_arch = 'armeabi-v7a'
81 if target_arch not in ['x86', 'armeabi', 'armeabi-v7a']:
82 if not env.GetOption('help') and not env.GetOption('clean'):
84 *********************************** Warning ***********************************
85 * current only x86, armeabi, armeabi-v7a libraries are provided! *
86 *******************************************************************************
89 # Too much boost warning, suppress the warning
90 lib_env.AppendUnique(CCFLAGS = ['-w'])
92 elif target_os == 'ios':
93 lib_env.AppendUnique(FRAMEWORKS = ['boost', 'openssl'])
94 elif target_os == 'darwin':
95 lib_env.AppendUnique(CPPPATH = ['/usr/local/include'])
96 lib_env.AppendUnique(LIBPATH = ['/usr/local/lib'])
99 lib_env.AppendUnique(LIBPATH = env.get('BUILD_DIR'))