diff options
author | Alexander von Gluck IV <[email protected]> | 2018-02-16 16:56:31 -0600 |
---|---|---|
committer | Alexander von Gluck IV <[email protected]> | 2018-02-16 16:56:34 -0600 |
commit | 834d221512fae8dd290d347fec071c4adbe140ed (patch) | |
tree | fc12d7bd18f90dd2909e9c9399081f92701804b5 /include/meson.build | |
parent | 7b283544dc76efe5216120b178574ff561605e23 (diff) |
meson: Add Haiku platform support v4
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'include/meson.build')
-rw-r--r-- | include/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/meson.build b/include/meson.build index 1cbc68182c7..28ffb332151 100644 --- a/include/meson.build +++ b/include/meson.build @@ -22,6 +22,7 @@ inc_drm_uapi = include_directories('drm-uapi') inc_vulkan = include_directories('vulkan') inc_d3d9 = include_directories('D3D9') inc_gl_internal = include_directories('GL/internal') +inc_haikugl = include_directories('HaikuGL') if with_gles1 install_headers( @@ -80,6 +81,13 @@ if with_gallium_st_nine ) endif +if with_platform_haiku + install_headers( + 'HaikuGL/GLRenderer.h', 'HaikuGL/GLView.h', 'HaikuGL/OpenGLKit.h', + subdir : 'opengl', + ) +endif + # Only install the headers if we are building a stand alone implementation and # not an ICD enabled implementation if with_gallium_opencl and not with_opencl_icd |