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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-02-14 19:32:38 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-02-14 19:33:14 +0300
commit2fad3132a310e2eeafd185a1a9954f9b850a8da8 (patch)
treec1a36de3130fd077cac892762e93fd2febec5951 /intern/cycles/app/CMakeLists.txt
parentdb297e7ea314ee1e0f6db796c3dfc6683f64cd22 (diff)
Cycles: Fix compilation error of Cycles standalone with Libmv disabled
Diffstat (limited to 'intern/cycles/app/CMakeLists.txt')
-rw-r--r--intern/cycles/app/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/cycles/app/CMakeLists.txt b/intern/cycles/app/CMakeLists.txt
index f6a6f96280f..b000266cac2 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)