summaryrefslogtreecommitdiff
path: root/present/meson.build
blob: cf725302aa62c9470efe07c24121e30014502a64 (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.1')
    ],
    c_args: '-DHAVE_XORG_CONFIG_H'
)