[Bf-blender-cvs] [dbdc346e9f] master: CMake: Remove MOTO library dependency when it is not needed

Jorge Bernal noreply at git.blender.org
Mon Feb 6 19:31:14 CET 2017


Commit: dbdc346e9ff6860fdd2c46c41bb474742405bfbd
Author: Jorge Bernal
Date:   Mon Feb 6 19:29:42 2017 +0100
Branches: master
https://developer.blender.org/rBdbdc346e9ff6860fdd2c46c41bb474742405bfbd

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

===================================================================

M	intern/CMakeLists.txt

===================================================================

diff --git a/intern/CMakeLists.txt b/intern/CMakeLists.txt
index 9a5476772a..dd9889c81b 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()




More information about the Bf-blender-cvs mailing list