forked from bartvdbraak/blender
1108075316
Because libblenkernel_blc, which depends on binreloc, has priority 225.
14 lines
279 B
Python
14 lines
279 B
Python
#!/usr/bin/python
|
|
import sys
|
|
import os
|
|
|
|
Import('env')
|
|
defs = 'ENABLE_BINRELOC'
|
|
cflags = []
|
|
|
|
sources = ['binreloc.c']
|
|
incs = 'include'
|
|
|
|
env.BlenderLib ( 'extern_binreloc', sources, Split(incs), Split(defs), libtype=['intern','player'], priority=[36, 226], compileflags = cflags)
|
|
|