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)
This commit is contained in:
Campbell Barton 2008-11-14 03:21:06 +00:00
parent 7401c57fb3
commit 7cce946de7

@ -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 = []