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:
authorCampbell Barton <ideasman42@gmail.com>2011-07-13 22:40:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-13 22:40:21 +0400
commit1fd33b6e777d54a3702e58253dabf94a752783e2 (patch)
treeefe02ce8e079d6bf5448cf7c6d3fed7b9e39a86e /source/blender/render/CMakeLists.txt
parentf94c9d5d612879aa5b7fec8be224b25aac870b5c (diff)
cmake option to build without smoke sim: WITH_MOD_SMOKE
Diffstat (limited to 'source/blender/render/CMakeLists.txt')
-rw-r--r--source/blender/render/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/render/CMakeLists.txt b/source/blender/render/CMakeLists.txt
index a2d698b739e..003f0b839f8 100644
--- a/source/blender/render/CMakeLists.txt
+++ b/source/blender/render/CMakeLists.txt
@@ -120,6 +120,10 @@ if(WITH_IMAGE_OPENEXR)
add_definitions(-DWITH_OPENEXR)
endif()
+if(WITH_MOD_SMOKE)
+ add_definitions(-DWITH_SMOKE)
+endif()
+
if(WITH_CODEC_QUICKTIME)
list(APPEND INC ../quicktime)
list(APPEND INC_SYS ${QUICKTIME_INCLUDE_DIRS})