88e66a1a8f4782b5a2b1d4d83ac65632643b627a
[mesa.git] / include / meson.build
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
21 inc_drm_uapi = include_directories('drm-uapi')
22 inc_vulkan = include_directories('vulkan')
23
24 if with_gles1
25 install_headers(
26 'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
27 subdir : 'GLES',
28 )
29 endif
30
31 if with_gles2
32 install_headers(
33 'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
34 subdir : 'GLES2',
35 )
36 install_headers(
37 'GLES3/gl3.h', 'GLES3/gl32.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
38 'GLES3/gl3platform.h',
39 subdir : 'GLES3',
40 )
41 endif
42
43 if with_gles1 or with_gles2 # or with_egl
44 install_headers('KHR/khrplatform.h', subdir : 'KHR')
45 endif
46
47 if with_opengl
48 install_headers(
49 'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
50 subdir : 'GL',
51 )
52 endif
53
54 if with_glx != 'disabled'
55 install_headers('GL/glx.h', 'GL/glext.h', 'GL/glx_mangle.h', subdir : 'GL')
56 endif
57
58 if with_osmesa
59 install_headers('GL/osmesa.h', subdir : 'GL')
60 endif
61
62 if with_egl
63 install_headers(
64 'EGL/eglext.h', 'EGL/egl.h', 'EGL/eglextchromium.h', 'EGL/eglmesaext.h',
65 'EGL/eglplatform.h',
66 subdir : 'EGL',
67 )
68 endif