forked from bartvdbraak/blender
3ce233e28d
intended as a standalone library for use in other applications that want the same tangent space as Blender. This also keeps blenkernel clean(er) from extra math functions.
10 lines
195 B
Python
10 lines
195 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = ['mikktspace.c']
|
|
|
|
incs = ''
|
|
defs = ''
|
|
|
|
env.BlenderLib ('bf_intern_mikktspace', sources, Split(incs), Split(defs), libtype=['intern'], priority=[100] )
|