Fix compilation error after recent commit

This commit is contained in:
Sergey Sharybin 2014-10-08 04:11:23 +06:00
parent 05e26297bf
commit 9245e1aeb8
3 changed files with 3 additions and 3 deletions

View File

@ -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 )

View File

@ -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})

View File

@ -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)