mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gl/meson: detect valid configuration from enabled apis/platform/winsys
This commit is contained in:
parent
a03f5f5de1
commit
556bed08a1
1 changed files with 3 additions and 3 deletions
|
@ -591,15 +591,15 @@ endif
|
||||||
# iOS, OS X, win32 specific support
|
# iOS, OS X, win32 specific support
|
||||||
|
|
||||||
build_gstgl = true
|
build_gstgl = true
|
||||||
if gl_lib_deps.length() == 0
|
if enabled_gl_apis.length() == 0
|
||||||
message('No OpenGL API libraries found or requested')
|
message('No OpenGL API libraries found or requested')
|
||||||
build_gstgl = false
|
build_gstgl = false
|
||||||
endif
|
endif
|
||||||
if gl_platform_deps.length() == 0
|
if enabled_gl_platforms.length() == 0
|
||||||
message('No OpenGL Platforms found or requested')
|
message('No OpenGL Platforms found or requested')
|
||||||
build_gstgl = false
|
build_gstgl = false
|
||||||
endif
|
endif
|
||||||
if gl_winsys_deps.length() == 0
|
if enabled_gl_winsys.length() == 0
|
||||||
message('No OpenGL Window systems found or requested')
|
message('No OpenGL Window systems found or requested')
|
||||||
build_gstgl = false
|
build_gstgl = false
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue