forked from bartvdbraak/blender
10 lines
190 B
Python
10 lines
190 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('./*.c')
|
|
|
|
defs = ''
|
|
incs = ' . '
|
|
|
|
env.BlenderLib ('extern_lzma', sources, Split(incs), Split(defs), libtype=['intern'], priority=[40] )
|