forked from bartvdbraak/blender
9 lines
224 B
Python
9 lines
224 B
Python
#!/usr/bin/python
|
|
Import ('env')
|
|
|
|
sources = env.Glob('intern/*.cpp')
|
|
|
|
incs = '. ../moto/include ../container ../memutil'
|
|
|
|
env.BlenderLib ('bf_intern_decimate', sources, Split(incs) , [], libtype=['core'], priority = [200] )
|