mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
This is needed to get proton working in Xfbdev, but is probably useful in other places too. Xephyr has some unrelated issues regaring Xinput, so steam doesn't work there. Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
19 lines
301 B
Meson
19 lines
301 B
Meson
srcs_dri2 = [
|
|
'dri2.c',
|
|
'dri2ext.c',
|
|
]
|
|
|
|
|
|
libxserver_dri2 = []
|
|
if build_dri2
|
|
libxserver_dri2 = static_library('xserver_dri2',
|
|
srcs_dri2,
|
|
include_directories: inc,
|
|
dependencies: [ common_dep, libdrm_dep ],
|
|
)
|
|
endif
|
|
|
|
if build_xorg
|
|
install_data('dri2.h', install_dir: xorgsdkdir)
|
|
endif
|