forked from bartvdbraak/blender
15da2232f7
* some lib renaming
9 lines
244 B
Python
9 lines
244 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = '. ../moto/include ../container ../memutil'
|
|
|
|
env.BlenderLib ('bf_decimation', sources, Split(incs) , [], libtype=['core','common','player'], priority = [10, 20, 20] )
|