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>2016-11-02 12:32:46 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-11-02 12:32:46 +0300
commit97a8cd68833f5f580cf1adf91ff561975471bfc5 (patch)
tree0822f1f07efcc4f2aa39ef9090de18776cc5b603 /CMakeLists.txt
parentf94a460397a86beb9f71e665e8f484fa4e10ebdc (diff)
CMake: Fix use of some option which was never defined
This way it seems more logical to me.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f3c22d9b717..fe226dd769b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -731,7 +731,7 @@ elseif(WITH_CYCLES OR WITH_OPENIMAGEIO OR WITH_AUDASPACE OR WITH_INTERNATIONAL O
# Keep enabled
else()
# New dependency graph needs either Boost or C++11 for function bindings.
- if(NOT USE_CXX11)
+ if(NOT WITH_CXX11)
# Enabled but we don't need it
set(WITH_BOOST OFF)
endif()