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>
This commit is contained in:
Thierry Reding
2018-03-29 13:07:55 +02:00
committed by Adam Jackson
parent f3b0a2aee2
commit 88c7b8bf4b
15 changed files with 115 additions and 1 deletions

View File

@@ -28,6 +28,14 @@ srcs_fb = [
'fbwindow.c',
]
hdrs_fb = [
'fb.h',
'fboverlay.h',
'fbpict.h',
'fbrop.h',
'wfbrename.h'
]
libxserver_fb = static_library('libxserver_fb',
srcs_fb,
include_directories: inc,
@@ -45,3 +53,5 @@ libxserver_wfb = static_library('libxserver_wfb',
pic: true,
build_by_default: false,
)
install_data(hdrs_fb, install_dir: xorgsdkdir)