Fix x86 and x86_64 build errors
[platform/upstream/iotivity.git] / service / third_party_libs.scons
1 ######################################################################
2 # This script manages third party libraries
3 #
4 #Note: The paths must keep consistent with oic-resource
5 ######################################################################
6 import os
7 import platform
8
9 Import('env', 'lib_env')
10
11 resource_path = env.get('SRC_DIR') + '/resource'
12 lib_env.AppendUnique(CPPPATH = [
13                 resource_path ,
14                 resource_path + '/include' ,
15                 resource_path + '/oc_logger/include',
16                 resource_path + '/csdk/stack/include',
17                 resource_path + '/csdk/ocsocket/include',
18                 resource_path + '/csdk/ocrandom/include',
19                 resource_path + '/csdk/logger/include'
20                 ])
21
22 lib_env.AppendUnique(LIBPATH = env.get('BUILD_DIR'))