summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKarol Herbst <kherbst@redhat.com>2020-11-08 20:28:21 +0100
committerMarge Bot <emma+marge@anholt.net>2022-09-12 05:58:12 +0000
commit20c90fed5a0ab0202ee1ef474c71cb816164a448 (patch)
tree1deb5b0120195d933ca493330382c8adcfe0934f /include
parentd431a01d9a87362421df2aa983d5ef92e5bfc4f9 (diff)
rusticl: added
Initial code drop for Rusticl :) Signed-off-by: Karol Herbst <kherbst@redhat.com> Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15439>
Diffstat (limited to 'include')
-rw-r--r--include/meson.build37
1 files changed, 20 insertions, 17 deletions
diff --git a/include/meson.build b/include/meson.build
index 46804f7f91c..5cfbef5a48d 100644
--- a/include/meson.build
+++ b/include/meson.build
@@ -118,27 +118,30 @@ if with_platform_haiku
)
endif
+opencl_headers = files(
+ 'CL/cl.h',
+ 'CL/cl.hpp',
+ 'CL/cl2.hpp',
+ 'CL/cl_d3d10.h',
+ 'CL/cl_d3d11.h',
+ 'CL/cl_dx9_media_sharing.h',
+ 'CL/cl_dx9_media_sharing_intel.h',
+ 'CL/cl_egl.h',
+ 'CL/cl_ext.h',
+ 'CL/cl_ext_intel.h',
+ 'CL/cl_gl.h',
+ 'CL/cl_gl_ext.h',
+ 'CL/cl_icd.h',
+ 'CL/cl_platform.h',
+ 'CL/cl_va_api_media_sharing_intel.h',
+ 'CL/cl_version.h',
+ 'CL/opencl.h',
+)
# Only install the headers if we are building a stand alone implementation and
# not an ICD enabled implementation
if with_gallium_opencl and not with_opencl_icd
install_headers(
- 'CL/cl.h',
- 'CL/cl.hpp',
- 'CL/cl2.hpp',
- 'CL/cl_d3d10.h',
- 'CL/cl_d3d11.h',
- 'CL/cl_dx9_media_sharing.h',
- 'CL/cl_dx9_media_sharing_intel.h',
- 'CL/cl_egl.h',
- 'CL/cl_ext.h',
- 'CL/cl_ext_intel.h',
- 'CL/cl_gl.h',
- 'CL/cl_gl_ext.h',
- 'CL/cl_icd.h',
- 'CL/cl_platform.h',
- 'CL/cl_va_api_media_sharing_intel.h',
- 'CL/cl_version.h',
- 'CL/opencl.h',
+ opencl_headers,
subdir: 'CL'
)
endif