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

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

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

incs = '. intern extern ../moto/include ../container ../memutil'
incs += ' ../../source/blender/makesdna ../../intern/guardedalloc'
incs += ' ../../source/blender/blenlib'

env.BlenderLib ('blender_bop', sources, Split(incs) , [], libtype='common', priority = 5 )