diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-09-20 20:11:32 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-10-09 13:42:44 -0700 |
commit | 3218056e0eb375eeda470058d06add1532acd6d4 (patch) | |
tree | b634c97a95770f05b640a41215b33efdb4ed69f3 /include | |
parent | 86eb09a136c62748eafa2dc79e10dbd681797cbf (diff) |
meson: Build i965 and dri stack
This gets pretty much the entire classic tree building, as well as
i965, including the various glapis. There are some workarounds for bugs
that are fixed in meson 0.43.0, which is due out on October 8th.
I have tested this with piglit using glx.
v2: - fix typo "vaule" -> "value"
- use gtest dep instead of linking to libgtest (rebase error)
- use gtest dep instead of linking against libgtest (rebase error)
- copy the megadriver, then create hard links from that, then delete
the megadriver. This matches the behavior of the autotools build.
(Eric A)
- Use host_machine instead of target_machine (Eric A)
- Put a comment in the right place (Eric A)
- Don't have two variables for the same information (Eric A)
- Put pre_args at top of file in this patch (Eric A)
- Fix glx generators in this patch instead of next (Eric A)
- Remove -DMESON hack (Eric A)
- add sha1_h to mesa in this patch (Eric A)
- Put generators in loops when possible to reduce code in
mapi/glapi/gen (Eric A)
v3: - put HAVE_X11_PLATFORM in this patch
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/meson.build | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/meson.build b/include/meson.build index 93def7e0ec..beb57e3e04 100644 --- a/include/meson.build +++ b/include/meson.build @@ -20,3 +20,41 @@ inc_drm_uapi = include_directories('drm-uapi') inc_vulkan = include_directories('vulkan') + +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 + +if with_glx + 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 |