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: 2dd2ac3849872d77731082f71149a074a52350d0 (plain)
1
2
3
4
5
6
7
8
#!/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] )