mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
If we are using OpenGL ES 3, then don't check for OpenGL/GLU
This commit is contained in:
parent
7ff429152d
commit
c21003feab
@ -350,10 +350,12 @@ endif()
|
|||||||
|
|
||||||
if(NOT ANDROID)
|
if(NOT ANDROID)
|
||||||
|
|
||||||
include(FindOpenGL)
|
if(NOT USE_GLES3)
|
||||||
include_directories(${OPENGL_INCLUDE_DIR})
|
include(FindOpenGL)
|
||||||
if(NOT OPENGL_GLU_FOUND)
|
include_directories(${OPENGL_INCLUDE_DIR})
|
||||||
message(FATAL_ERROR "GLU is required but not found")
|
if(NOT OPENGL_GLU_FOUND)
|
||||||
|
message(FATAL_ERROR "GLU is required but not found")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(FindALSA OPTIONAL)
|
include(FindALSA OPTIONAL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user