mirror of https://github.com/encounter/SDL.git
cmake: fix CMP0072 warning by prefering GLVND
This commit is contained in:
parent
c90e1ec3ef
commit
ad21c70408
|
@ -44,6 +44,8 @@ endif()
|
||||||
|
|
||||||
# CMake incorrectly detects opengl32.lib being present on MSVC ARM64
|
# CMake incorrectly detects opengl32.lib being present on MSVC ARM64
|
||||||
if(NOT MSVC OR NOT CMAKE_GENERATOR_PLATFORM STREQUAL "ARM64")
|
if(NOT MSVC OR NOT CMAKE_GENERATOR_PLATFORM STREQUAL "ARM64")
|
||||||
|
# Prefer GLVND, if present
|
||||||
|
set(OpenGL_GL_PREFERENCE GLVND)
|
||||||
find_package(OpenGL)
|
find_package(OpenGL)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue