[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [17451] trunk/blender/SConstruct: copy over pthread dll to the install dir with cross compiling,

Campbell Barton ideasman42 at gmail.com
Fri Nov 14 04:21:07 CET 2008


Revision: 17451
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=17451
Author:   campbellbarton
Date:     2008-11-14 04:21:06 +0100 (Fri, 14 Nov 2008)

Log Message:
-----------
copy over pthread dll to the install dir with cross compiling, 
eventually should copy more libs but for now this makes blenderlite work 
- (used for automatic blender builds on graphicall)

Modified Paths:
--------------
    trunk/blender/SConstruct

Modified: trunk/blender/SConstruct
===================================================================
--- trunk/blender/SConstruct	2008-11-14 03:13:40 UTC (rev 17450)
+++ trunk/blender/SConstruct	2008-11-14 03:21:06 UTC (rev 17451)
@@ -472,6 +472,13 @@
 		td, tf = os.path.split(targetdir)
 		iconinstall.append(env.Install(dir=td, source=srcfile))
 
+# dlls for linuxcross
+# TODO - add more libs, for now this lets blenderlite run
+if env['OURPLATFORM']=='linuxcross':
+	dir=env['BF_INSTALLDIR']
+	source = ['../lib/windows/pthreads/lib/pthreadGC2.dll']
+	scriptinstall.append(env.Install(dir=dir, source=source))
+
 #-- plugins
 pluglist = []
 plugtargetlist = []





More information about the Bf-blender-cvs mailing list