xserver-multidpi/render/meson.build
Thierry Reding 88c7b8bf4b 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>
2018-04-02 13:42:08 -04:00

29 lines
473 B
Meson

srcs_render = [
'animcur.c',
'filter.c',
'glyph.c',
'matrix.c',
'miindex.c',
'mipict.c',
'mirect.c',
'mitrap.c',
'mitri.c',
'picture.c',
'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)