New priorities for most libs, at least core. This is still for Blender proper, BGE and such still to come.
10 lines
319 B
Python
10 lines
319 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = '#/intern/guardedalloc ../blenlib ../makesdna ../blenkernel'
|
|
incs += ' ../imbuf ../editors/include ../render/extern/include ../render/intern/include'
|
|
|
|
env.BlenderLib ( 'bf_yafray', sources, Split(incs), [], libtype=['core'], priority=[205] )
|