
New priorities for most libs, at least core. This is still for Blender proper, BGE and such still to come.
18 lines
512 B
Python
18 lines
512 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.c')
|
|
|
|
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
|
|
incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #intern/bmfont'
|
|
incs += ' #/extern/glew/include'
|
|
|
|
defs = []
|
|
|
|
if env['WITH_BF_INTERNATIONAL']:
|
|
incs += ' ../../ftfont'
|
|
defs.append('INTERNATIONAL')
|
|
defs.append('FTGL_STATIC_LIBRARY')
|
|
|
|
env.BlenderLib ( 'bf_editors_interface', sources, Split(incs), Split(defs), libtype=['core'], priority=[110] )
|