forked from bartvdbraak/blender
858dbbe232
*totally forgot scons file for lzma
10 lines
186 B
Python
10 lines
186 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('./*.c')
|
|
|
|
defs = ''
|
|
incs = ' . '
|
|
|
|
env.BlenderLib ('bf_lzma', sources, Split(incs), Split(defs), libtype=['intern'], priority=[40] )
|