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>2011-04-06 05:51:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-06 05:51:43 +0400
commit1c8d31128766a001dd014a2224ed94e91a65f115 (patch)
tree6cb50392e682dd49ac9798df87bec836f3e74529 /CMakeLists.txt
parent4b15fcf4970511f021735cbf86acfc28680679ec (diff)
missed setting WITH_BUILTIN_GLEW on non *nux OS's
also made WITH_PYTHON advanced.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 11831ef0615..ef8b8efc772 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -72,6 +72,7 @@ get_blender_version()
# Blender internal features
option(WITH_INTERNATIONAL "Enable I18N (International fonts and text)" ON)
option(WITH_PYTHON "Enable Embedded Python API (only disable for development)" ON)
+mark_as_advanced(WITH_PYTHON) # dont want people disabling this unless they really know what they are doing.
option(WITH_PYTHON_SAFETY "Enable internal API error checking to track invalid data to prevent crash on access (at the expense of some effeciency, only enable for development)." OFF)
option(WITH_PYTHON_MODULE "Enable building as a python module (experemental, only enable for development)" OFF)
option(WITH_BUILDINFO "Include extra build details (only disable for development & faster builds)" ON)
@@ -90,6 +91,9 @@ endif()
if(UNIX AND NOT APPLE)
option(WITH_X11_XINPUT "Enable X11 Xinput (tablet support)" ON)
option(WITH_BUILTIN_GLEW "Use GLEW OpenGL wrapper library bundled with blender" ON)
+else()
+ # not an option for other OS's
+ set(WITH_BUILTIN_GLEW ON)
endif()
# Modifiers