summaryrefslogtreecommitdiff
path: root/composite
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 /composite
parentf3b0a2aee21f12f3332bf598d3ba0fcbd2832f95 (diff)
downloadxserver-88c7b8bf4bae080ecb879fe7e3f8be2bede6f0a6.tar.gz
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 'composite')
-rw-r--r--composite/meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/composite/meson.build b/composite/meson.build
index 6c4a03fb8..7547f0e7e 100644
--- a/composite/meson.build
+++ b/composite/meson.build
@@ -6,8 +6,14 @@ srcs_composite = [
'compwindow.c',
]
+hdrs_composite = [
+ 'compositeext.h',
+]
+
libxserver_composite = static_library('libxserver_composite',
srcs_composite,
include_directories: inc,
dependencies: common_dep,
)
+
+install_data(hdrs_composite, install_dir: xorgsdkdir)