blob: a4296ca7a838703e21b8306d0f7ca6a76d9c6a61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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'
)
|