mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
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:
parent
4095fac72b
commit
36aaaa968a
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue