New priorities for most libs, at least core. This is still for Blender proper, BGE and such still to come.
12 lines
257 B
Python
12 lines
257 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
objs = []
|
|
|
|
o = SConscript('intern/SConscript')
|
|
objs += o
|
|
|
|
incs = '#/intern/guardedalloc ../blenkernel ../blenlib ../makesdna intern .'
|
|
|
|
env.BlenderLib ( 'bf_rna', objs, Split(incs), [], libtype=['core'], priority = [195] )
|