xserver/hw/vfb/meson.build
Michel Dänzer 4718dca4f8 Don't install Xvfb
We're keeping it for unit tests, but we don't want to ship it from this
branch.

Also disable Xvfb in CI for ninja test. It's still built and used for
unit tests as part of ninja dist, but we don't want to run XTS on Xvfb.

(cherry picked from commit 0408fcb329)
2022-01-18 12:09:52 +01:00

23 lines
431 B
Meson

srcs = [
'InitInput.c',
'InitOutput.c',
'../../mi/miinitext.c',
'../../mi/miinitext.h',
]
xvfb_server = executable(
'Xvfb',
srcs,
include_directories: inc,
dependencies: common_dep,
link_with: [
libxserver_main,
libxserver_fb,
libxserver,
libxserver_xkb_stubs,
libxserver_xi_stubs,
libxserver_glx,
libglxvnd,
],
install: false,
)