From dbdc346e9ff6860fdd2c46c41bb474742405bfbd Mon Sep 17 00:00:00 2001 From: Jorge Bernal Date: Mon, 6 Feb 2017 19:29:42 +0100 Subject: 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 --- intern/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern/CMakeLists.txt') 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() -- cgit v1.2.3