meson: Include EGL after gallium

Reviewed-by: Eric Engestrom <eric@engestrom.ch>
Reviewed By: Bill Kristiansen <billkris@microsoft.com>

Acked-by: Roland Scheidegger <sroland@vmware.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12727>
This commit is contained in:
Jesse Natalie 2021-09-01 09:31:04 -07:00 committed by Marge Bot
parent 9716209761
commit b8a23fa893
1 changed files with 3 additions and 3 deletions

View File

@ -117,9 +117,6 @@ if with_gbm
else
inc_gbm = []
endif
if with_egl
subdir('egl')
endif
if with_gallium
subdir('gallium')
# This has to be here since it requires libgallium, and subdir cannot
@ -128,6 +125,9 @@ if with_gallium
subdir('mesa/state_tracker/tests')
endif
endif
if with_egl
subdir('egl')
endif
# This must be after at least mesa, glx, and gallium, since libgl will be
# defined in one of those subdirs depending on the glx provider.