From 2fad3132a310e2eeafd185a1a9954f9b850a8da8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sat, 14 Feb 2015 21:32:38 +0500 Subject: Cycles: Fix compilation error of Cycles standalone with Libmv disabled --- intern/cycles/app/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'intern/cycles/app') 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) -- cgit v1.2.3