diff options
author | Dylan Baker <[email protected]> | 2017-10-26 15:45:40 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-28 14:06:38 -0800 |
commit | 43b0e5f5cd87b3ca4dc97a6373cbee1f1f129f06 (patch) | |
tree | 47ca49cc9047109bcd390480d6ec26dd680dd373 /src/gallium/drivers/virgl | |
parent | a537231b226280bc1e5b7f0f58707cbd2cf29848 (diff) |
meson: build virgl driver
Build tested only.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/drivers/virgl')
-rw-r--r-- | src/gallium/drivers/virgl/meson.build | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gallium/drivers/virgl/meson.build b/src/gallium/drivers/virgl/meson.build new file mode 100644 index 00000000000..8284f548927 --- /dev/null +++ b/src/gallium/drivers/virgl/meson.build @@ -0,0 +1,39 @@ +# 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. + +files_libvirgl = files( + 'virgl_buffer.c', + 'virgl_context.c', + 'virgl_encode.c', + 'virgl_query.c', + 'virgl_resource.c', + 'virgl_screen.c', + 'virgl_streamout.c', + 'virgl_texture.c', + 'virgl_tgsi.c', +) + +libvirgl = static_library( + 'virgl', + files_libvirgl, + c_args : c_vis_args, + include_directories : inc_common, + dependencies : dep_libdrm, +) |