blender/extern/libredcode/SConscript
Nathan Letwory f59f5e67a5 * doing some warning cleaning
* accidently left priority tests around.
2008-11-04 23:46:01 +00:00

17 lines
363 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','player'],
priority=[5, 5, 200], compileflags = [])