blob: 1cbc68182c736ffb6945c254ec51853b3c746a85 [file] [log] [blame]
Dylan Bakerd1992252017-09-14 17:57:17 -07001# 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_drm_uapi = include_directories('drm-uapi')
22inc_vulkan = include_directories('vulkan')
Dylan Baker6b4c7042017-11-13 17:58:51 -080023inc_d3d9 = include_directories('D3D9')
Dylan Bakeraca3b642018-01-03 12:37:34 -080024inc_gl_internal = include_directories('GL/internal')
Dylan Baker32180562017-09-20 20:11:32 -070025
26if with_gles1
27 install_headers(
28 'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
29 subdir : 'GLES',
30 )
31endif
32
33if with_gles2
34 install_headers(
35 'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
36 subdir : 'GLES2',
37 )
38 install_headers(
Dylan Bakera80a3e42017-11-29 11:16:59 -080039 'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
Dylan Baker32180562017-09-20 20:11:32 -070040 'GLES3/gl3platform.h',
41 subdir : 'GLES3',
42 )
43endif
44
Dylan Bakerdbeb2782017-11-30 10:39:29 -080045if with_gles1 or with_gles2 or with_egl
Dylan Baker32180562017-09-20 20:11:32 -070046 install_headers('KHR/khrplatform.h', subdir : 'KHR')
47endif
48
49if with_opengl
50 install_headers(
51 'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
52 subdir : 'GL',
53 )
54endif
55
Dylan Bakera47c5252017-09-22 12:55:00 -070056if with_glx != 'disabled'
Dylan Baker7776dc32017-11-29 11:18:52 -080057 install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL')
Dylan Baker32180562017-09-20 20:11:32 -070058endif
59
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070060if with_osmesa != 'none'
Dylan Baker32180562017-09-20 20:11:32 -070061 install_headers('GL/osmesa.h', subdir : 'GL')
62endif
Dylan Baker108d2572017-10-18 12:20:43 -070063
64if with_egl
65 install_headers(
66 'EGL/eglext.h', 'EGL/egl.h', 'EGL/eglextchromium.h', 'EGL/eglmesaext.h',
67 'EGL/eglplatform.h',
68 subdir : 'EGL',
69 )
70endif
Dylan Baker91244db2017-11-30 10:37:11 -080071
72if with_dri
73 install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal')
74endif
Dylan Baker6b4c7042017-11-13 17:58:51 -080075
76if with_gallium_st_nine
77 install_headers(
78 'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h',
79 subdir : 'd3dadapter',
80 )
81endif
Dylan Baker42ea0632017-12-08 15:26:00 -080082
83# Only install the headers if we are building a stand alone implementation and
84# not an ICD enabled implementation
85if with_gallium_opencl and not with_opencl_icd
86 install_headers(
87 'CL/cl.h',
88 'CL/cl.hpp',
89 'CL/cl_d3d10.h',
90 'CL/cl_d3d11.h',
91 'CL/cl_dx9_media_sharing.h',
92 'CL/cl_egl.h',
93 'CL/cl_ext.h',
94 'CL/cl_gl.h',
95 'CL/cl_gl_ext.h',
96 'CL/cl_platform.h',
97 'CL/opencl.h',
98 subdir: 'CL'
99 )
100endif