drm-uapi: use local files, not system libdrm
[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_vulkan = include_directories('vulkan')
22 inc_d3d9 = include_directories('D3D9')
23 inc_gl_internal = include_directories('GL/internal')
24 inc_haikugl = include_directories('HaikuGL')
25
26 if with_gles1
27 install_headers(
28 'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
29 subdir : 'GLES',
30 )
31 endif
32
33 if with_gles2
34 install_headers(
35 'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
36 subdir : 'GLES2',
37 )
38 install_headers(
39 'GLES3/gl3.h', 'GLES3/gl31.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
40 'GLES3/gl3platform.h',
41 subdir : 'GLES3',
42 )
43 endif
44
45 if with_gles1 or with_gles2 or with_opengl or with_egl
46 install_headers('KHR/khrplatform.h', subdir : 'KHR')
47 endif
48
49 if with_opengl
50 install_headers(
51 'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
52 subdir : 'GL',
53 )
54 endif
55
56 if with_glx != 'disabled'
57 install_headers('GL/glx.h', 'GL/glxext.h', 'GL/glx_mangle.h', subdir : 'GL')
58 endif
59
60 if with_osmesa != 'none'
61 install_headers('GL/osmesa.h', subdir : 'GL')
62 endif
63
64 if 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 )
70 endif
71
72 if with_dri
73 install_headers('GL/internal/dri_interface.h', subdir : 'GL/internal')
74 endif
75
76 if with_gallium_st_nine
77 install_headers(
78 'd3dadapter/d3dadapter9.h', 'd3dadapter/drm.h', 'd3dadapter/present.h',
79 subdir : 'd3dadapter',
80 )
81 endif
82
83 if with_platform_haiku
84 install_headers(
85 'HaikuGL/GLRenderer.h', 'HaikuGL/GLView.h', 'HaikuGL/OpenGLKit.h',
86 subdir : 'opengl',
87 )
88 endif
89
90 # Only install the headers if we are building a stand alone implementation and
91 # not an ICD enabled implementation
92 if with_gallium_opencl and not with_opencl_icd
93 install_headers(
94 'CL/cl.h',
95 'CL/cl.hpp',
96 'CL/cl_d3d10.h',
97 'CL/cl_d3d11.h',
98 'CL/cl_dx9_media_sharing.h',
99 'CL/cl_egl.h',
100 'CL/cl_ext.h',
101 'CL/cl_gl.h',
102 'CL/cl_gl_ext.h',
103 'CL/cl_platform.h',
104 'CL/opencl.h',
105 subdir: 'CL'
106 )
107 endif
108
109 if with_intel_vk
110 install_headers('vulkan/vulkan_intel.h', subdir : 'vulkan')
111 endif