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/CMakeLists.txt
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/CMakeLists.txt')
-rw-r--r--source/blender/makesrna/intern/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index d0219009a45..8ca2f8a18a9 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -136,6 +136,10 @@ IF(WITH_JACK)
ADD_DEFINITIONS(-DWITH_JACK)
ENDIF(WITH_JACK)
+IF(WITH_OPENCOLLADA)
+ ADD_DEFINITIONS(-DWITH_COLLADA)
+ENDIF(WITH_OPENCOLLADA)
+
# Build makesrna executable
ADD_EXECUTABLE(makesrna ${SRC} ${INC_FILES})
TARGET_LINK_LIBRARIES(makesrna bf_dna)