summaryrefslogtreecommitdiff
path: root/present
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 /present
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 'present')
-rw-r--r--present/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/present/meson.build b/present/meson.build
index 1bd3d381e..e316af20d 100644
--- a/present/meson.build
+++ b/present/meson.build
@@ -12,6 +12,11 @@ srcs_present = [
'present_wnmd.c',
]
+hdrs_present = [
+ 'present.h',
+ 'presentext.h',
+]
+
libxserver_present = static_library('libxserver_present',
srcs_present,
include_directories: inc,
@@ -21,3 +26,5 @@ libxserver_present = static_library('libxserver_present',
],
c_args: '-DHAVE_XORG_CONFIG_H'
)
+
+install_data(hdrs_present, install_dir: xorgsdkdir)