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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-11-12 17:36:58 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-11-12 17:36:58 +0300
commite83ef4efc52d40dac5e898acd986f88ae9658903 (patch)
tree286c721bf3c219ddd37eddff5fdd567aa00f5851 /source/blender/makesrna/intern/SConscript
parent0a467d5183a71972fec5ad5147c6f869a08aefc6 (diff)
Related to #24653: added scene.collada_export() function, to use instead of an
operator for external render engines, since operators should not be called in the render() callback.
Diffstat (limited to 'source/blender/makesrna/intern/SConscript')
-rw-r--r--source/blender/makesrna/intern/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/SConscript b/source/blender/makesrna/intern/SConscript
index b8e30bcfe98..ec588319eae 100644
--- a/source/blender/makesrna/intern/SConscript
+++ b/source/blender/makesrna/intern/SConscript
@@ -88,6 +88,9 @@ if env['BF_UNIT_TEST']:
if env['WITH_BF_PYTHON']:
defs.append('WITH_PYTHON')
+if env['WITH_BF_COLLADA']:
+ defs.append('WITH_COLLADA')
+
if env['OURPLATFORM'] == 'linux2':
cflags='-pthread'
incs += ' ../../../extern/binreloc/include'