diff options
author | Dylan Baker <[email protected]> | 2017-10-26 14:19:19 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-11-28 14:06:36 -0800 |
commit | a537231b226280bc1e5b7f0f58707cbd2cf29848 (patch) | |
tree | eb1859f98e026156e557137750c48b20629d408a /src/gallium/winsys | |
parent | 5060c51b6f4dfb0d5358bde6523285163d3faaad (diff) |
meson: build svga driver on linux
Build tested only.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/svga/drm/meson.build | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/gallium/winsys/svga/drm/meson.build b/src/gallium/winsys/svga/drm/meson.build new file mode 100644 index 00000000000..24f67aca9ec --- /dev/null +++ b/src/gallium/winsys/svga/drm/meson.build @@ -0,0 +1,45 @@ +# 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_svgadrm = files( + 'pb_buffer_simple_fenced.c', + 'vmw_buffer.c', + 'vmw_context.c', + 'vmw_fence.c', + 'vmw_screen.c', + 'vmw_screen_dri.c', + 'vmw_screen_ioctl.c', + 'vmw_screen_pools.c', + 'vmw_screen_svga.c', + 'vmw_surface.c', + 'vmw_shader.c', + 'vmw_query.c', +) + +libsvgadrm = static_library( + 'svgadrm', + files_svgadrm, + c_args : [c_vis_args, c_msvc_compat_args], + include_directories : [ + inc_src, inc_include, inc_gallium, inc_gallium_aux, + include_directories('../../../drivers/svga', '../../../drivers/svga/include'), + ], + dependencies : dep_libdrm, +) |