blender/intern/mikktspace/SConscript
Nathan Letwory 3ce233e28d Move mikktspace code to own library, so it is clear that it is also
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.
2011-02-15 09:24:35 +00:00

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] )