Files
xenocara/xserver/present/meson.build
matthieu 8c4424dd36 Add back the meson build system to xserver.
Not having those file only create noise when merging upstream releases.
2023-01-22 09:21:08 +00:00

31 lines
592 B
Meson

srcs_present = [
'present.c',
'present_event.c',
'present_execute.c',
'present_fake.c',
'present_fence.c',
'present_notify.c',
'present_request.c',
'present_scmd.c',
'present_screen.c',
'present_vblank.c',
]
hdrs_present = [
'present.h',
'presentext.h',
]
libxserver_present = static_library('libxserver_present',
srcs_present,
include_directories: inc,
dependencies: [
common_dep,
dependency('presentproto', version: '>= 1.2')
],
)
if build_xorg
install_data(hdrs_present, install_dir: xorgsdkdir)
endif