summaryrefslogtreecommitdiff
path: root/randr
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2018-03-29 13:07:55 +0200
committerAdam Jackson <ajax@redhat.com>2018-04-02 13:42:08 -0400
commit88c7b8bf4bae080ecb879fe7e3f8be2bede6f0a6 (patch)
tree4aadbd5d836e6b498e0744e768ec87deebd00121 /randr
parentf3b0a2aee21f12f3332bf598d3ba0fcbd2832f95 (diff)
meson: Distribute more SDK headers
Install missing headers to the SDK directory to allow external modules to properly build against the SDK. After this commit, the list of files installed in the SDK include directory is the same as the list of files installed by the autotools-based build. Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'randr')
-rw-r--r--randr/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/randr/meson.build b/randr/meson.build
index cc0e8efe9..7090dde60 100644
--- a/randr/meson.build
+++ b/randr/meson.build
@@ -16,6 +16,11 @@ srcs_randr = [
'rrtransform.c',
]
+hdrs_randr = [
+ 'randrstr.h',
+ 'rrtransform.h',
+]
+
if build_xinerama
srcs_randr += 'rrxinerama.c'
endif
@@ -25,3 +30,5 @@ libxserver_randr = static_library('libxserver_randr',
include_directories: inc,
dependencies: common_dep,
)
+
+install_data(hdrs_randr, install_dir: xorgsdkdir)