When checking for glew, don't fail if a working system version is not
found so we can fall back to the Externals version.
This commit is contained in:
parent
a3d86ceead
commit
d617efc5ef
|
@ -648,11 +648,11 @@ else()
|
|||
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
include(FindGLEW)
|
||||
endif()
|
||||
if(NOT GLEW_FOUND)
|
||||
if(NOT GLEW_FOUND OR NOT GLEW_HAS_1_9_METHODS)
|
||||
message("Using static GLEW from Externals")
|
||||
add_subdirectory(Externals/GLew)
|
||||
include_directories(Externals/GLew/include)
|
||||
endif(NOT GLEW_FOUND)
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
|
|
@ -28,8 +28,5 @@ if(GLEW_FOUND)
|
|||
if (GLEW_HAS_1_9_METHODS)
|
||||
include_directories(${GLEW_INCLUDE_DIRS})
|
||||
message("GLEW found")
|
||||
else()
|
||||
set($GLEW_FOUND 0 CACHE INTERNAL "")
|
||||
message(FATAL_ERROR "A version of GLEW with the required methods was not found")
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue