2017-09-15 08:57:17 +08:00
|
|
|
# Copyright © 2017 Intel Corporation
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
inc_drm_uapi = include_directories('drm-uapi')
|
|
|
|
inc_vulkan = include_directories('vulkan')
|
2017-09-21 11:11:32 +08:00
|
|
|
|
|
|
|
if with_gles1
|
|
|
|
install_headers(
|
|
|
|
'GLES/egl.h', 'GLES/gl.h', 'GLES/glext.h', 'GLES/glplatform.h',
|
|
|
|
subdir : 'GLES',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if with_gles2
|
|
|
|
install_headers(
|
|
|
|
'GLES2/gl2.h', 'GLES2/gl2ext.h', 'GLES2/gl2platform.h',
|
|
|
|
subdir : 'GLES2',
|
|
|
|
)
|
|
|
|
install_headers(
|
|
|
|
'GLES3/gl3.h', 'GLES3/gl32.h', 'GLES3/gl32.h', 'GLES3/gl3ext.h',
|
|
|
|
'GLES3/gl3platform.h',
|
|
|
|
subdir : 'GLES3',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if with_gles1 or with_gles2 # or with_egl
|
|
|
|
install_headers('KHR/khrplatform.h', subdir : 'KHR')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if with_opengl
|
|
|
|
install_headers(
|
|
|
|
'GL/gl.h', 'GL/glext.h', 'GL/glcorearb.h', 'GL/gl_mangle.h',
|
|
|
|
subdir : 'GL',
|
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2017-09-23 03:55:00 +08:00
|
|
|
if with_glx != 'disabled'
|
2017-09-21 11:11:32 +08:00
|
|
|
install_headers('GL/glx.h', 'GL/glext.h', 'GL/glx_mangle.h', subdir : 'GL')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if with_osmesa
|
|
|
|
install_headers('GL/osmesa.h', subdir : 'GL')
|
|
|
|
endif
|