diff options
author | Thierry Reding <treding@nvidia.com> | 2018-03-29 13:07:55 +0200 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-04-02 13:42:08 -0400 |
commit | 88c7b8bf4bae080ecb879fe7e3f8be2bede6f0a6 (patch) | |
tree | 4aadbd5d836e6b498e0744e768ec87deebd00121 /render | |
parent | f3b0a2aee21f12f3332bf598d3ba0fcbd2832f95 (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 'render')
-rw-r--r-- | render/meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/render/meson.build b/render/meson.build index d976f36f3..cbd64741c 100644 --- a/render/meson.build +++ b/render/meson.build @@ -12,8 +12,17 @@ srcs_render = [ 'render.c', ] +hdrs_render = [ + 'glyphstr.h', + 'mipict.h', + 'picture.h', + 'picturestr.h', +] + libxserver_render = static_library('libxserver_render', srcs_render, include_directories: inc, dependencies: common_dep, ) + +install_data(hdrs_render, install_dir: xorgsdkdir) |