mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 15:10:02 +01:00
20 lines
422 B
Meson
20 lines
422 B
Meson
|
|
srcs_present = [
|
||
|
|
'present.c',
|
||
|
|
'present_event.c',
|
||
|
|
'present_fake.c',
|
||
|
|
'present_fence.c',
|
||
|
|
'present_notify.c',
|
||
|
|
'present_request.c',
|
||
|
|
'present_screen.c',
|
||
|
|
]
|
||
|
|
|
||
|
|
libxserver_present = static_library('libxserver_present',
|
||
|
|
srcs_present,
|
||
|
|
include_directories: inc,
|
||
|
|
dependencies: [
|
||
|
|
common_dep,
|
||
|
|
dependency('presentproto', version: '>= 1.0')
|
||
|
|
],
|
||
|
|
c_args: '-DHAVE_XORG_CONFIG_H'
|
||
|
|
)
|