summaryrefslogtreecommitdiff
path: root/dri3
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 /dri3
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 'dri3')
-rw-r--r--dri3/meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/dri3/meson.build b/dri3/meson.build
index 0deec32aa..48ce0d9d6 100644
--- a/dri3/meson.build
+++ b/dri3/meson.build
@@ -4,6 +4,10 @@ srcs_dri3 = [
'dri3_screen.c',
]
+hdrs_dri3 = [
+ 'dri3.h',
+]
+
libxserver_dri3 = []
if build_dri3
libxserver_dri3 = static_library('libxserver_dri3',
@@ -13,3 +17,5 @@ if build_dri3
c_args: '-DHAVE_XORG_CONFIG_H'
)
endif
+
+install_data(hdrs_dri3, install_dir: xorgsdkdir)