Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « decimation « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f4befb3ffa2b6a1183bc0c9f2dcd600073c909d (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/python
Import ('env')

sources = env.Glob('intern/*.cpp')

incs = '. ../moto/include ../container ../memutil ../guardedalloc'

env.BlenderLib ('bf_intern_decimate', sources, Split(incs) , [], libtype=['core', 'player'], priority = [200, 100] )