mirror of https://github.com/mpv-player/mpv
meson: conditionalize searching for ANGLE's EGL
This commit is contained in:
parent
a392f91170
commit
1d8f28cea7
|
@ -1147,9 +1147,10 @@ if features['egl-angle']
|
|||
sources += files('video/out/opengl/angle_dynamic.c')
|
||||
endif
|
||||
|
||||
egl_dep = cc.find_library('EGL', required: get_option('egl-angle-lib'))
|
||||
egl_dep = cc.find_library('EGL', required:
|
||||
get_option('egl-angle-lib').require(features['egl-angle']))
|
||||
egl_angle_lib = get_option('egl-angle-lib').require(
|
||||
features['egl-angle'] and cc.has_function('eglCreateWindowSurface',
|
||||
egl_dep.found() and cc.has_function('eglCreateWindowSurface',
|
||||
dependencies: egl_dep,
|
||||
prefix: '#include <EGL/egl.h>'),
|
||||
error_message: 'egl-angle-lib could not be found!',
|
||||
|
|
Loading…
Reference in New Issue