From cb0c279d4dd1994adf4a5fc6742549cdd1d09905 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 13 Oct 2013 09:27:48 +0000 Subject: [PATCH] * Fix scons compilation on Windows, missing pthreads include. --- source/blender/editors/mask/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/editors/mask/SConscript b/source/blender/editors/mask/SConscript index a80d3317c89..9dd521e3a7c 100644 --- a/source/blender/editors/mask/SConscript +++ b/source/blender/editors/mask/SConscript @@ -41,5 +41,8 @@ incs = [ '../../makesrna', '../../windowmanager', ] + +if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'): + incs.append(env['BF_PTHREADS_INC']) env.BlenderLib('bf_editors_mask', sources, incs, defs, libtype=['core'], priority=[100])