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: 3d0cb0b2db7d055d2076ea87f4d70ef689077605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
Import ('env')

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

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

<<<<<<< .working
env.BlenderLib ('bf_intern_decimate', sources, Split(incs) , [], libtype=['core'], priority = [200] )
=======
env.BlenderLib ('bf_intern_decimate', sources, Split(incs) , [], libtype=['core', 'player'], priority = [200, 100] )
>>>>>>> .merge-right.r35190