Fix build error with scons + msvc, needs pthread include.

This commit is contained in:
Brecht Van Lommel 2013-04-25 00:06:43 +00:00
parent 2516497ca2
commit d22e9657a5

@ -35,6 +35,9 @@ incs += ' ../render/extern/include ../makesrna ../nodes ../bmesh ../imbuf'
incs += ' ' + env['BF_ZLIB_INC'] incs += ' ' + env['BF_ZLIB_INC']
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
incs += ' ' + env['BF_PTHREADS_INC']
defs = [] defs = []
if env['WITH_BF_INTERNATIONAL']: if env['WITH_BF_INTERNATIONAL']: