Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3218bf9ba4b..8d8f78a3e7a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1057,8 +1057,11 @@ if(WITH_GL_PROFILE_ES20)
endif()
else()
- list(APPEND BLENDER_GL_LIBRARIES "${OPENGL_LIBRARIES}")
-
+ if(OpenGL_GL_PREFERENCE STREQUAL "LEGACY" AND OPENGL_gl_LIBRARY)
+ list(APPEND BLENDER_GL_LIBRARIES ${OPENGL_gl_LIBRARY} ${OPENGL_glx_LIBRARY})
+ else()
+ list(APPEND BLENDER_GL_LIBRARIES ${OPENGL_opengl_LIBRARY} ${OPENGL_glx_LIBRARY})
+ endif()
endif()
if(WITH_GL_EGL)