From 9245e1aeb86ebe173849b9543966a42ca3964805 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 8 Oct 2014 04:11:23 +0600 Subject: [PATCH] Fix compilation error after recent commit --- CMakeLists.txt | 2 +- source/blender/makesrna/intern/CMakeLists.txt | 2 +- source/creator/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1fb406f650f..63dae899366 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -330,7 +330,7 @@ option(WITH_GTESTS "Enable GTest unit testing" OFF) # OpenGL -option(WITH_GLEW_MX "Support multiple GLEW contexts (experimental)" ON ) +option(WITH_GLEW_MX "Support multiple GLEW contexts (experimental)" OFF ) option(WITH_GLEW_ES "Switches to experimental copy of GLEW that has support for OpenGL ES. (temporary option for development purposes)" OFF) option(WITH_GL_EGL "Use the EGL OpenGL system library instead of the platform specific OpenGL system library (CGL, glX, or WGL)" OFF) option(WITH_GL_PROFILE_COMPAT "Support using the OpenGL 'compatibility' profile. (deprecated)" ON ) diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt index 9a53ebcec03..5d736f9c011 100644 --- a/source/blender/makesrna/intern/CMakeLists.txt +++ b/source/blender/makesrna/intern/CMakeLists.txt @@ -300,7 +300,7 @@ blender_include_dirs( ) blender_include_dirs_sys( - ${GLEW_INCLUDE_PATH} + "${GLEW_INCLUDE_PATH}" ) add_executable(makesrna ${SRC} ${SRC_RNA_INC} ${SRC_DNA_INC}) diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 20c2448eed3..73400da4845 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -41,7 +41,7 @@ blender_include_dirs( ) add_definitions(${GL_DEFINITIONS}) -blender_include_dirs(${GLEW_INCLUDE_PATH}) +blender_include_dirs("${GLEW_INCLUDE_PATH}") if(WIN32) blender_include_dirs(../../intern/utfconv)