diff options
author | Dylan Baker <[email protected]> | 2018-04-18 13:27:13 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-10 16:33:04 -0700 |
commit | 560cdabebe18ebe50e3c33d716e2aa82603dbb38 (patch) | |
tree | b9dc00e0f49aed3e68821a150fad87cd32b6d16d /src/gallium/winsys | |
parent | 2a53a06793ac696b2566e38174e02e83583f6495 (diff) |
meson: build gallium gdi winsys
v6: - use null_dep instead of []
Reviewed-by: Eric Anholt <[email protected]> (v5)
Acked-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/sw/gdi/meson.build | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gallium/winsys/sw/gdi/meson.build b/src/gallium/winsys/sw/gdi/meson.build new file mode 100644 index 00000000000..ac6c7cf0aa2 --- /dev/null +++ b/src/gallium/winsys/sw/gdi/meson.build @@ -0,0 +1,27 @@ +# Copyright © 2018 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. + +libwsgdi = static_library( + 'wsgdi', + 'gdi_sw_winsys.c', + include_directories : [ + inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_gallium_drivers, + ], +) |