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:
authorJorge Bernal <jbernalmartinez@gmail.com>2017-02-06 21:29:42 +0300
committerJorge Bernal <jbernalmartinez@gmail.com>2017-02-06 21:29:42 +0300
commitdbdc346e9ff6860fdd2c46c41bb474742405bfbd (patch)
tree228baedb6861739fcfd9cc24684d74695ae7afd7 /intern/CMakeLists.txt
parent0170c682feb63bedc139e25099ec9cc5c7098101 (diff)
CMake: Remove MOTO library dependency when it is not needed
It is not necessary to add MOTO library dependency when we use WITH_IK_SOLVER (now it uses Eigen) or we use WITH_MOD_BOOLEAN (it was used by bsp intern library some time ago but it is not present in the code anymore). Reviewers: mont29, sergey Subscribers: mont29, sergey Differential Revision: https://developer.blender.org/D2477
Diffstat (limited to 'intern/CMakeLists.txt')
-rw-r--r--intern/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/CMakeLists.txt b/intern/CMakeLists.txt
index 9a5476772ab..dd9889c81ba 100644
--- a/intern/CMakeLists.txt
+++ b/intern/CMakeLists.txt
@@ -62,7 +62,7 @@ if(WITH_IK_ITASC)
add_subdirectory(itasc)
endif()
-if(WITH_IK_SOLVER OR WITH_GAMEENGINE OR WITH_MOD_BOOLEAN)
+if(WITH_GAMEENGINE)
add_subdirectory(moto)
endif()