
Blender builds and links on Linux. For now without BGE and its player, but that will come. Priorities are still a mess, so expect more commits soon.
16 lines
423 B
Python
16 lines
423 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.c')
|
|
|
|
incs = '../include ../../blenlib ../../blenkernel ../../makesdna'
|
|
incs += ' ../../windowmanager ../../python ../../makesrna'
|
|
incs += ' #/intern/guardedalloc #/extern/glew/include'
|
|
|
|
defs = ''
|
|
|
|
if not env['WITH_BF_PYTHON']:
|
|
defs += 'DISABLE_PYTHON'
|
|
|
|
env.BlenderLib ( 'bf_editors_space_api', sources, Split(incs), Split(defs), libtype=['core'], priority=[30] )
|