diff options
author | Dylan Baker <[email protected]> | 2017-10-20 21:48:18 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-27 11:06:45 -0700 |
commit | cbbd5bb889a2c271a504c379f36a7cb717a85af4 (patch) | |
tree | 58c7208233c088bdca901498a2ab3ed704469225 /src | |
parent | 7503ab687b3992b0967eafd4fb7372ddb3f4445a (diff) |
meson: build classic osmesa
This builds the classic (non-gallium) osmesa with meson. This has been
tested with the osdemo application from mesa-demos.
v2: - Remove unrelated change
- Add SELinux dependency to osmesa
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/glapi/meson.build | 2 | ||||
-rw-r--r-- | src/mesa/drivers/osmesa/meson.build | 48 | ||||
-rw-r--r-- | src/mesa/meson.build | 3 | ||||
-rw-r--r-- | src/meson.build | 1 |
4 files changed, 52 insertions, 2 deletions
diff --git a/src/mapi/glapi/meson.build b/src/mapi/glapi/meson.build index 74f84d289ba..d2d86afd6c1 100644 --- a/src/mapi/glapi/meson.build +++ b/src/mapi/glapi/meson.build @@ -69,7 +69,7 @@ endif libglapi_static = static_library( 'glapi_static', static_glapi_files, - include_directories : [inc_mesa, inc_include, inc_src], + include_directories : [inc_mesa, inc_include, inc_src, inc_mapi], c_args : [c_msvc_compat_args, static_glapi_args], dependencies : [dep_thread, dep_selinux], build_by_default : false, diff --git a/src/mesa/drivers/osmesa/meson.build b/src/mesa/drivers/osmesa/meson.build new file mode 100644 index 00000000000..407cda7e94b --- /dev/null +++ b/src/mesa/drivers/osmesa/meson.build @@ -0,0 +1,48 @@ +# Copyright © 2017 Dylan Baker + +# 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. + +osmesa_link_with = [] + +if with_shared_glapi + osmesa_link_with += libglapi +endif + +libosmesa = shared_library( + osmesa_lib_name, + ['osmesa.c', glapitable_h, glapitemp_h], + c_args : c_vis_args, + cpp_args : cpp_vis_args, + link_args : ld_args_gc_sections, + include_directories : [ + inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux, + ], + link_with : [libmesa_classic, libglapi_static, osmesa_link_with], + dependencies : [dep_thread, dep_selinux], + version : '8.0.0', + install : true, +) + +pkg.generate( + name : 'osmesa', + description : 'Mesa Off-screen Rendering Library', + version : '8', + libraries : libosmesa, + libraries_private : gl_priv_libs, +) diff --git a/src/mesa/meson.build b/src/mesa/meson.build index 846a40da822..20d06aad4dd 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -718,6 +718,9 @@ libmesa_gallium = static_library( ) subdir('drivers/dri') +if with_osmesa == 'classic' + subdir('drivers/osmesa') +endif if with_tests subdir('main/tests') endif diff --git a/src/meson.build b/src/meson.build index 6dc9abeb0bd..cc8f5953c51 100644 --- a/src/meson.build +++ b/src/meson.build @@ -48,7 +48,6 @@ subdir('util') subdir('mapi/glapi/gen') subdir('mapi') # TODO: opengl -# TODO: osmesa subdir('compiler') subdir('egl/wayland/wayland-drm') subdir('vulkan') |