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 /source/blender/blenlib/SConscript
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 'source/blender/blenlib/SConscript')
-rw-r--r--source/blender/blenlib/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/SConscript b/source/blender/blenlib/SConscript
index de588c5a54a..a7dab45ad13 100644
--- a/source/blender/blenlib/SConscript
+++ b/source/blender/blenlib/SConscript
@@ -16,4 +16,7 @@ if env['WITH_BF_INTERNATIONAL'] == 1:
if env['OURPLATFORM'] == 'linux2':
cflags='-pthread'
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
+ incs += ' ' + env['BF_PTHREADS_INC']
+
env.BlenderLib ( 'bf_blenlib', sources, Split(incs), Split(defs), libtype=['core','player'], priority = [85,195], compileflags =cflags )