Updated the MANIFEST content of simulator plugins.
[platform/upstream/iotivity.git] / extlibs / boost / SConscript
index 734721f..c9fa5cf 100644 (file)
@@ -4,7 +4,7 @@ Import('env')
 
 boost_env = env.Clone()
 
-modules = ['thread','program_options']
+modules = ['thread','program_options', 'system', 'date_time']
 
 target_os = env.get('TARGET_OS')
 target_arch = env.get('TARGET_ARCH')
@@ -23,18 +23,18 @@ if 'android' == target_os :
     boost_version   = '1.58.0'
     boost_base_name  = 'boost_'+string.replace(boost_version,'.','_')
     boost_arch_name  = boost_base_name+'.zip'
+    boost_b2_name    = boost_base_name+os.sep+'b2'
     boost_url       = 'http://downloads.sourceforge.net/project/boost/boost/'+boost_version+'/'+boost_arch_name+'?r=&ts=1421801329&use_mirror=iweb'
 
     host_os = sys.platform
 
     if host_os == 'linux2' :
         boost_bootstrap = boost_base_name+os.sep+'bootstrap.sh'
-        boost_b2_name    = boost_base_name+os.sep+'b2'
     else :
         msg="Host platform (%s) is currently not supported for boost builds" % host_os
         raise SCons.Errors.EnvironmentError(msg)
 
-    if not os.path.exists(boost_arch_name):
+    if not os.path.exists(boost_arch_name) and not os.path.exists(boost_base_name):
         boost_arch_name = env.URLDownload(boost_arch_name, boost_url)
 
     if not os.path.exists(boost_base_name):
@@ -50,7 +50,10 @@ if 'android' == target_os :
         os.path.join(dep_src_dir, 'boost', 'config.hpp'),
         os.path.join(dep_src_dir, 'boost', 'variant.hpp'),
         os.path.join(dep_src_dir, 'boost', 'program_options.hpp'),
-        os.path.join(dep_src_dir, 'libboost_thread.a'),
+        os.path.join(dep_src_dir, 'boost', 'thread.hpp'),
+        os.path.join(dep_src_dir, 'boost', 'date_time.hpp'),
+        os.path.join(dep_src_dir, 'libboost_thread.a'),        
+        os.path.join(dep_src_dir, 'libboost_date_time.a'),
         os.path.join(dep_src_dir, 'libboost_atomic.a'),
         os.path.join(dep_src_dir, 'libboost_system.a'),
         os.path.join(dep_src_dir, 'libboost_program_options.a')