
+ 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.
23 lines
619 B
Python
23 lines
619 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.c')
|
|
|
|
cflags=''
|
|
incs = '. ../makesdna ../blenkernel #/intern/guardedalloc ../include'
|
|
incs += ' ' + env['BF_FREETYPE_INC']
|
|
incs += ' ' + env['BF_ZLIB_INC']
|
|
incs += ' ' + env['BF_SDL_INC']
|
|
defs = ''
|
|
|
|
if env['WITH_BF_INTERNATIONAL'] == 1:
|
|
defs = 'WITH_FREETYPE2'
|
|
|
|
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 )
|