meson.build: move build_xephyr and build_xfbdev to toplevel

These values are also used in at the toplevel, and we're going to
have more uses there for xorg-sdk-only builds.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-02-13 11:59:14 +01:00
committed by Enrico Weigelt
parent eb6b201c23
commit b2e858ee80
2 changed files with 6 additions and 4 deletions

View File

@@ -284,14 +284,18 @@ endif
build_xvfb = get_option('xvfb')
build_xephyr = get_option('xephyr')
build_xfbdev = get_option('xfbdev')
summary({
'Xorg': build_xorg,
'Xnest': build_xnest,
'Xvfb': build_xvfb,
'Xwin': build_xwin,
'Xquartz': build_xquartz,
'Xephyr': get_option('xephyr'),
'Xfbdev': get_option('xfbdev'),
'Xephyr': build_xephyr,
'Xfbdev': build_xfbdev,
},
section: 'DDX',
bool_yn: true,