forked from bartvdbraak/blender
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 = [])
|