[Bf-blender-cvs] [2fad313] master: Cycles: Fix compilation error of Cycles standalone with Libmv disabled

Sergey Sharybin noreply at git.blender.org
Sat Feb 14 17:33:28 CET 2015


Commit: 2fad3132a310e2eeafd185a1a9954f9b850a8da8
Author: Sergey Sharybin
Date:   Sat Feb 14 21:32:38 2015 +0500
Branches: master
https://developer.blender.org/rB2fad3132a310e2eeafd185a1a9954f9b850a8da8

Cycles: Fix compilation error of Cycles standalone with Libmv disabled

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

M	intern/cycles/app/CMakeLists.txt

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

diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index f6a6f96..b000266 100644
--- a/intern/cycles/app/CMakeLists.txt
+++ b/intern/cycles/app/CMakeLists.txt
@@ -45,7 +45,9 @@ if(CYCLES_STANDALONE_REPOSITORY)
 	endif()
 else()
 	list(APPEND LIBRARIES bf_intern_glew_mx)
-	list(APPEND LIBRARIES extern_glog)
+	if(WITH_CYCLES_LOGGING)
+		list(APPEND LIBRARIES extern_glog)
+	endif()
 endif()
 
 if(WITH_CYCLES_STANDALONE AND WITH_CYCLES_STANDALONE_GUI)




More information about the Bf-blender-cvs mailing list