[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59459] trunk/blender/intern/CMakeLists. txt: skip building moto if its not needed.

Campbell Barton ideasman42 at gmail.com
Sat Aug 24 12:23:41 CEST 2013


Revision: 59459
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59459
Author:   campbellbarton
Date:     2013-08-24 10:23:41 +0000 (Sat, 24 Aug 2013)
Log Message:
-----------
skip building moto if its not needed.

Modified Paths:
--------------
    trunk/blender/intern/CMakeLists.txt

Modified: trunk/blender/intern/CMakeLists.txt
===================================================================
--- trunk/blender/intern/CMakeLists.txt	2013-08-24 10:05:29 UTC (rev 59458)
+++ trunk/blender/intern/CMakeLists.txt	2013-08-24 10:23:41 UTC (rev 59459)
@@ -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 @@
 	add_subdirectory(itasc)
 endif()
 
+if(WITH_IK_SOLVER OR WITH_GAMEENGINE)
+	add_subdirectory(moto)
+endif()
+
 if(WITH_CYCLES)
 	add_subdirectory(cycles)
 endif()




More information about the Bf-blender-cvs mailing list