1# Copyright © 2017 Intel Corporation
2
3# Permission is hereby granted, free of charge, to any person obtaining a copy
4# of this software and associated documentation files (the "Software"), to deal
5# in the Software without restriction, including without limitation the rights
6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7# copies of the Software, and to permit persons to whom the Software is
8# furnished to do so, subject to the following conditions:
9
10# The above copyright notice and this permission notice shall be included in
11# all copies or substantial portions of the Software.
12
13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19# SOFTWARE.
20
21inc_include = include_directories('.')
22inc_d3d9 = include_directories('D3D9')
23inc_haikugl = include_directories('HaikuGL')
24
25if with_gles1
26  install_headers(
27    'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
28    subdir : 'GLES',
29  )
30endif
31
32if with_gles2
33  install_headers(
34    'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
35    subdir : 'GLES2',
36  )
37  install_headers(
38    'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
39    'GLES3/gl3platform.h',
40    subdir : 'GLES3',
41  )
42endif
43
44if with_gles1 or with_gles2 or with_opengl or with_egl
45  install_headers('KHR/khrplatform.h', subdir : 'KHR')
46endif
47
48if with_opengl
49  install_headers(
50    'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
51    subdir : 'GL',
52  )
53endif
54
55if with_glx != 'disabled'
56  install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL')
57endif
58
59if with_osmesa != 'none'
60  install_headers('GL/osmesa.h', subdir : 'GL')
61endif
62
63if with_egl
64  install_headers(
65    'EGL/eglext.h', 'EGL/egl.h', 'EGL/eglextchromium.h', 'EGL/eglmesaext.h',
66    'EGL/eglplatform.h',
67    subdir : 'EGL',
68  )
69endif
70
71if with_dri
72  install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal')
73endif
74
75if with_gallium_st_nine
76  install_headers(
77    'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h',
78    subdir : 'd3dadapter',
79  )
80endif
81
82if with_platform_haiku
83  install_headers(
84    'HaikuGL/GLRenderer.h', 'HaikuGL/GLView.h', 'HaikuGL/OpenGLKit.h',
85    subdir : 'opengl',
86  )
87endif
88
89# Only install the headers if we are building a stand alone implementation and
90# not an ICD enabled implementation
91if with_gallium_opencl and not with_opencl_icd
92  install_headers(
93    'CL/cl.h',
94    'CL/cl.hpp',
95    'CL/cl2.hpp',
96    'CL/cl_d3d10.h',
97    'CL/cl_d3d11.h',
98    'CL/cl_dx9_media_sharing.h',
99    'CL/cl_dx9_media_sharing_intel.h',
100    'CL/cl_egl.h',
101    'CL/cl_ext.h',
102    'CL/cl_ext_intel.h',
103    'CL/cl_gl.h',
104    'CL/cl_gl_ext.h',
105    'CL/cl_platform.h',
106    'CL/cl_va_api_media_sharing_intel.h',
107    'CL/cl_version.h',
108    'CL/opencl.h',
109    subdir: 'CL'
110  )
111endif
112
113if with_intel_vk
114  install_headers('vulkan/vulkan_intel.h', subdir : 'vulkan')
115endif
116