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-01-26 13:47:53 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-26 13:47:53 +0300
commit0095c2dad2e66a2906fd60c417c845b35a645cf7 (patch)
tree6037f80f9a6f262400b20306ae164762ccf424b3 /CMakeLists.txt
parentc8d2ebe13c1a93a7390df60607525c47614b4984 (diff)
CMake: Keep Schur specializations OFF by default config
Now when doing full build is real easy on all platforms, we can only keep it enabled for the blender_full configuration.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4ec5053eb58..cac2d00d2c9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -158,7 +158,6 @@ option_defaults_init(
_init_IMAGE_REDCODE
_init_INPUT_NDOF
_init_JACK
- _init_LIBMV_SCHUR_SPECIALIZATION
_init_OPENCOLLADA
_init_OPENCOLORIO
_init_SDL
@@ -351,7 +350,7 @@ endif()
# Camera/motion tracking
option(WITH_LIBMV "Enable Libmv structure from motion library" ON)
-option(WITH_LIBMV_SCHUR_SPECIALIZATIONS "Enable fixed-size schur specializations." ${_init_LIBMV_SCHUR_SPECIALIZATION})
+option(WITH_LIBMV_SCHUR_SPECIALIZATIONS "Enable fixed-size schur specializations." OFF)
option(WITH_LIBMV_WERROR "Treat warnings as errors in Libmv (and Blender's motion tracking) code")
mark_as_advanced(WITH_LIBMV_SCHUR_SPECIALIZATIONS)
mark_as_advanced(WITH_LIBMV_WERROR)