summaryrefslogtreecommitdiff
path: root/randr/meson.build
blob: 7090dde600e5ce342491155170b9ceb2d71632df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
srcs_randr = [
    'randr.c',
    'rrcrtc.c',
    'rrdispatch.c',
    'rrinfo.c',
    'rrlease.c',
    'rrmode.c',
    'rrmonitor.c',
    'rroutput.c',
    'rrpointer.c',
    'rrproperty.c',
    'rrprovider.c',
    'rrproviderproperty.c',
    'rrscreen.c',
    'rrsdispatch.c',
    'rrtransform.c',
]

hdrs_randr = [
    'randrstr.h',
    'rrtransform.h',
]

if build_xinerama
    srcs_randr += 'rrxinerama.c'
endif

libxserver_randr = static_library('libxserver_randr',
    srcs_randr,
    include_directories: inc,
    dependencies: common_dep,
)

install_data(hdrs_randr, install_dir: xorgsdkdir)