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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-25 04:06:43 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-25 04:06:43 +0400
commitd22e9657a557058eb115f6690b1f063d0dbd6ea2 (patch)
treeda082923d1cfc96b3713d46a24c9e9f79ade01a6 /source/blender/blenloader
parent2516497ca267d5b215cb0a2dd6f34efa662278b0 (diff)
Fix build error with scons + msvc, needs pthread include.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenloader/SConscript b/source/blender/blenloader/SConscript
index 8950c4f7702..778cbef2a8b 100644
--- a/source/blender/blenloader/SConscript
+++ b/source/blender/blenloader/SConscript
@@ -35,6 +35,9 @@ incs += ' ../render/extern/include ../makesrna ../nodes ../bmesh ../imbuf'
incs += ' ' + env['BF_ZLIB_INC']
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
+ incs += ' ' + env['BF_PTHREADS_INC']
+
defs = []
if env['WITH_BF_INTERNATIONAL']: