forked from bartvdbraak/blender
20f39ec7d8
* further cleaning of 'player' stuff. Now only 3 libs are remaining, of which ideally the stubs lib will be fixed at some point, fading away into the dark history of not-so-nice code. The current blenderplayer part is still a little bit hackish, I'll see if I can find a better alternative, for now it works good enough.
17 lines
349 B
Python
17 lines
349 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
import os
|
|
import shutil
|
|
|
|
Import('env')
|
|
|
|
sources = env.Glob('*.c')
|
|
incs = '. ../libopenjpeg'
|
|
|
|
env.BlenderLib ( libname='extern_redcode',
|
|
sources=sources, includes=Split(incs),
|
|
defines=[],
|
|
libtype=['core','intern'],
|
|
priority=[5, 5], compileflags = [])
|