forked from bartvdbraak/blender
eb186d18dc
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.
14 lines
265 B
Python
14 lines
265 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=['extern'], priority=[36], compileflags = cflags)
|
|
|