xserver/hw/vfb/meson.build
Michel Dänzer 0408fcb329 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.
2021-02-03 18:22:18 +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,
)