From 9c1cc35be2b46d88ecdc331ccfd3b5063c5b82d7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 3 Sep 2017 16:34:10 +1000 Subject: [PATCH] CMake: use Blender's glew by default Use since it's always bundled to avoid any issues caused by version mis-match. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04237812d87..5ca1eda8ebb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -289,7 +289,7 @@ if(WITH_X11) endif() if(UNIX AND NOT APPLE) - option(WITH_SYSTEM_GLEW "Use GLEW OpenGL wrapper library provided by the operating system" ON) + option(WITH_SYSTEM_GLEW "Use GLEW OpenGL wrapper library provided by the operating system" OFF) option(WITH_SYSTEM_GLES "Use OpenGL ES library provided by the operating system" ON) else() # not an option for other OS's