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:
authorNathan Letwory <nathan@letworyinteractive.com>2006-02-25 17:53:27 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-25 17:53:27 +0300
commitd9f9e765009d264b43cd93f730bf7730af2d873d (patch)
treede47fa9be8032e668925260a99ee050b0bd0efca /tools/Blender.py
parentfa1129dc1d52f40af2ca5c986a2feb5f7a320041 (diff)
==SCons==
+ SCons support for pthreads-win32. Library will be committed shortly into lib/windows, so be sure to check commit list and update that as well when the pthread lib is available.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index ad744697c7a..1243fb7d309 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -124,6 +124,9 @@ def setup_staticlibs(lenv):
if lenv['WITH_BF_STATICOPENGL']:
statlibs += Split(lenv['BF_OPENGL_LIB_STATIC'])
+ if lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
+ libincs += Split(lenv['BF_PTHREADS_LIBPATH'])
+
return statlibs, libincs
def setup_syslibs(lenv):
@@ -147,6 +150,9 @@ def setup_syslibs(lenv):
syslibs += Split(lenv['BF_SDL_LIB'])
if not lenv['WITH_BF_STATICOPENGL']:
syslibs += Split(lenv['BF_OPENGL_LIB'])
+ if lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
+ syslibs += Split(lenv['BF_PTHREADS_LIB'])
+
syslibs += Split(lenv['LLIBS'])
return syslibs