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>2013-08-24 14:23:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-24 14:23:41 +0400
commitaf1c274be72b8f42cb15463aebf3b513d1bdb3d4 (patch)
tree00083762e318c4bce89c3a166059b213d47b9dff /intern/CMakeLists.txt
parent3cf14f0b3a6622d2592e4912a7f60b9dab54b1e0 (diff)
skip building moto if its not needed.
Diffstat (limited to 'intern/CMakeLists.txt')
-rw-r--r--intern/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/intern/CMakeLists.txt b/intern/CMakeLists.txt
index 69d6e253fd0..364db3592c7 100644
--- a/intern/CMakeLists.txt
+++ b/intern/CMakeLists.txt
@@ -27,7 +27,6 @@
add_subdirectory(string)
add_subdirectory(ghost)
add_subdirectory(guardedalloc)
-add_subdirectory(moto)
add_subdirectory(memutil)
add_subdirectory(opencolorio)
add_subdirectory(opennl)
@@ -62,6 +61,10 @@ if(WITH_IK_ITASC)
add_subdirectory(itasc)
endif()
+if(WITH_IK_SOLVER OR WITH_GAMEENGINE)
+ add_subdirectory(moto)
+endif()
+
if(WITH_CYCLES)
add_subdirectory(cycles)
endif()