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