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:
authorThomas Dinges <blender@dingto.org>2012-08-21 00:13:37 +0400
committerThomas Dinges <blender@dingto.org>2012-08-21 00:13:37 +0400
commit94ce9505a9bf07e3d2532c82a0b8396f7c9727b3 (patch)
tree131c25688a6f8db437d343a9850253987ccd63bf /source/blender/nodes/SConscript
parente410049a6a95aaffb605e8d6bbd4bb6a8df4fa4b (diff)
Legacy Compositor / Scons:
* Added WITH_BF_COMPOSITOR_LEGACY, enabled per default.
Diffstat (limited to 'source/blender/nodes/SConscript')
-rw-r--r--source/blender/nodes/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index f42dfdd2e1e..ec4f00a199a 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -40,8 +40,8 @@ if env['WITH_BF_COMPOSITOR']:
incs += ' ../compositor '
defs.append("WITH_COMPOSITOR")
-# TODO, make optional
-defs.append("WITH_COMPOSITOR_LEGACY")
+if env['WITH_BF_COMPOSITOR_LEGACY']:
+ defs.append("WITH_COMPOSITOR_LEGACY")
env.BlenderLib ( libname = 'bf_nodes', sources = sources, includes = Split(incs), defines = defs, libtype=['core','player'], priority = [190,105] )
env.BlenderLib ( libname = 'bf_cmpnodes', sources = cmpsources, includes = Split(incs), defines = defs, libtype=['core','player'], priority = [175,101] )