diff options
author | Dylan Baker <[email protected]> | 2018-03-02 10:28:11 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-03-02 11:11:20 -0800 |
commit | e23192022a2cde122a6ccc70e5495fda009bee12 (patch) | |
tree | c140eda02854d18966b00f8b959317c5a2a3d3e9 | |
parent | 1ad89fa138180fff233a92fad3588f13d01df303 (diff) |
meson: install vulkan_intel.h header
Fixes: d1992255bb29054fa51763376d125183a9f602f3
("meson: Add build Intel "anv" vulkan driver")
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r-- | include/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/meson.build b/include/meson.build index 28ffb332151..b4555eabbfc 100644 --- a/include/meson.build +++ b/include/meson.build @@ -106,3 +106,7 @@ if with_gallium_opencl and not with_opencl_icd subdir: 'CL' ) endif + +if with_intel_vk + install_headers('vulkan/vulkan_intel.h', subdir : 'vulkan') +endif |