Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-11-14 06:21:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-11-14 06:21:06 +0300
commit7cce946de708d697e3131676cc94507f4421e07b (patch)
treefadb1c6079b8508d15c33cd2a00d1b434a3b7d9c
parent7401c57fb36b5f807c84ba0a6af7d981a6794ec6 (diff)
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)
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index a35be70e50d..8e3666a7859 100644
--- a/SConstruct
+++ b/SConstruct
@@ -472,6 +472,13 @@ if env['OURPLATFORM']=='linux2':
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 = []