Don't link against GLU library
We are core profile now, no need to link against GLU. This change makes it so Blender binary is not dependent on liGLU.so. That was a weird thing that Blender was dependent on it, but was not using any functions from it.
This commit is contained in:
@@ -1057,8 +1057,11 @@ if(WITH_GL_PROFILE_ES20)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
else()
|
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()
|
endif()
|
||||||
|
|
||||||
if(WITH_GL_EGL)
|
if(WITH_GL_EGL)
|
||||||
|
Reference in New Issue
Block a user