This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/SConscript

26 lines
697 B
Python
Raw Normal View History

#!/usr/bin/python
Import ('env')
sources = env.Glob('intern/*.c')
2004-01-04 21:11:59 +00:00
cflags=''
incs = '. ../makesdna ../blenkernel #/intern/guardedalloc ../editors/include'
incs += ' ' + env['BF_FREETYPE_INC']
incs += ' ' + env['BF_ZLIB_INC']
defs = ''
2004-01-04 21:11:59 +00:00
if env['WITH_BF_SDL']:
incs += ' ' + env['BF_SDL_INC']
if env['WITH_BF_INTERNATIONAL']:
defs = 'WITH_FREETYPE2'
2004-01-04 21:11:59 +00:00
if env['OURPLATFORM'] == 'linux2':
cflags='-pthread'
incs += ' ../../../extern/binreloc/include'
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross'):
incs += ' ' + env['BF_PTHREADS_INC']
env.BlenderLib ( 'bf_blenlib', sources, Split(incs), Split(defs), libtype=['core'], priority = [180], compileflags =cflags )