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:
authorTon Roosendaal <ton@blender.org>2009-01-12 22:14:33 +0300
committerTon Roosendaal <ton@blender.org>2009-01-12 22:14:33 +0300
commitab39a3f2b79a037efecac11ebcd94868a16a67ef (patch)
treebdf06916d3f1072cd7218c900c2d01dfb6982cef /source/blender/blenkernel/SConscript
parent03fc5696dc154259dea599b805c94c82b58e70b6 (diff)
Added pthread include for windows scons
Diffstat (limited to 'source/blender/blenkernel/SConscript')
-rw-r--r--source/blender/blenkernel/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript
index a6b7120d72a..aae4addd71e 100644
--- a/source/blender/blenkernel/SConscript
+++ b/source/blender/blenkernel/SConscript
@@ -49,4 +49,7 @@ if env['WITH_BF_QUICKTIME']:
if env['BF_NO_ELBEEM']:
defs += ' DISABLE_ELBEEM'
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross'):
+ incs += ' ' + env['BF_PTHREADS_INC']
+
env.BlenderLib ( libname = 'bf_blenkernel', sources = sources, includes = Split(incs), defines = Split(defs), libtype=['core'], priority = [155] )