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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-09-05 15:51:58 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-09-05 15:52:29 +0300
commit1478ac35c743430d0b333ae9829689782baf70c2 (patch)
tree1c64deaa6eed08cd48f92766232ac6377e7c98f3 /source/blender/editors/space_view3d/SConscript
parent9683807459947330d50e8e38edae430d10d53ffc (diff)
Depsgraph: Don't use legacy function when building without legacy depsgraph
Diffstat (limited to 'source/blender/editors/space_view3d/SConscript')
-rw-r--r--source/blender/editors/space_view3d/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_view3d/SConscript b/source/blender/editors/space_view3d/SConscript
index 6e4e47e22a4..7fdccce1c0e 100644
--- a/source/blender/editors/space_view3d/SConscript
+++ b/source/blender/editors/space_view3d/SConscript
@@ -68,4 +68,7 @@ if env['WITH_BF_INTERNATIONAL']:
if env['WITH_BF_FREESTYLE']:
defs.append('WITH_FREESTYLE')
+if env['WITH_BF_LEGACY_DEPSGRAPH']:
+ defs.append('WITH_LEGACY_DEPSGRAPH')
+
env.BlenderLib ( 'bf_editors_space_view3d', sources, incs, defines = defs, libtype=['core'], priority=[40] )