gnome-control-center/tests/meson.build
Peter Hutterer 541d72e915 tests: Skip some tests if we don't have Xvfb or setxkbmap
The keyboard test relies on both of those programs, the network
panel test on Xvfb. Where we don't have those programs installed (e.g. a
pure Wayland session) we cannot run the test.
2024-06-15 07:24:56 +00:00

16 lines
400 B
Meson

setxkbmap = find_program('setxkbmap', required: false)
Xvfb = find_program('Xvfb', required: false)
subdir('common')
#subdir('datetime')
if host_is_linux
subdir('network')
endif
# FIXME: this is a workaround because interactive-tests don't work with libadwaita as a subproject. See !1754
if not libadwaita_is_subproject
subdir('interactive-panels')
endif
subdir('printers')
subdir('keyboard')