build/meson: Print more build options on meson run

This commit is contained in:
Christoph Haag 2020-10-15 00:04:54 +02:00
parent fb0e1ab0ce
commit 94d546322e

View file

@ -274,3 +274,51 @@ if get_option('steamvr_plugin')
else
message('steamvr plugin: no')
endif
if build_opengl
message(' opengl: yes')
else
message(' opengl: no')
endif
if build_opengles
message(' opengles: yes')
else
message(' opengles: no')
endif
if build_egl
message(' egl: yes')
else
message(' egl: no')
endif
if build_xlib
message(' xlib: yes')
else
message(' xlib: no')
endif
if build_xcb
message(' xcb: yes')
else
message(' xcb: no')
endif
if build_wayland
message(' wayland: yes')
else
message(' wayland: no')
endif
if not get_option('systemd').disabled() and systemd.found()
message(' systemd: yes')
else
message(' systemd: no')
endif
if not get_option('dbus').disabled() and dbus.found()
message(' dbus: yes')
else
message(' dbus: no')
endif