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:
authorCampbell Barton <ideasman42@gmail.com>2012-05-27 14:03:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-27 14:03:13 +0400
commit9978f97b1229c6836c17e7c7ade8005aa042d429 (patch)
treec6d7d65d4accd285bc93b4f9640fda265ba5f29b /CMakeLists.txt
parent857dedbc584fcf0af0afa13f008377fd9a83dad1 (diff)
cmake edits
- only show mingw option when building with mingw - always run cmake configure with convenience build targets so failed configurations stop re-configuring. - disable WITH_GHOST_XDND in 'make lite'
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 89fe482d7ec..038d6a075dd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -229,8 +229,10 @@ option(WITH_PYTHON_INSTALL_NUMPY "Copy system numpy into the blender install fol
set(PYTHON_NUMPY_PATH "" CACHE PATH "Python to python site-packages or dist-packages containing 'numpy' module")
mark_as_advanced(PYTHON_NUMPY_PATH)
-option(WITH_MINGW64 "Use the 64-bit version of MinGW" OFF)
-mark_as_advanced(WITH_MINGW64)
+if(MINGW)
+ option(WITH_MINGW64 "Use the 64-bit version of MinGW" OFF)
+ mark_as_advanced(WITH_MINGW64)
+endif()
# Cycles
option(WITH_CYCLES "Enable cycles Render Engine" ON)