meson: move glx subdir after gallium build

more dependency hell

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30400>
This commit is contained in:
Mike Blumenkrantz 2024-07-19 13:12:08 -04:00 committed by Marge Bot
parent 4095fac72b
commit 36aaaa968a

View file

@ -105,9 +105,6 @@ endif
if with_gallium
subdir('mesa')
subdir('gallium')
if with_glx == 'dri'
subdir('glx')
endif
# This has to be here since it requires libgallium, and subdir cannot
# contain ..
if with_tests
@ -117,6 +114,9 @@ if with_gallium
subdir('mesa/state_tracker/tests')
endif
endif
if with_glx == 'dri'
subdir('glx')
endif
if with_gbm
subdir('gbm')
else