diff options
author | Dylan Baker <[email protected]> | 2018-01-10 16:07:11 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-04-18 09:03:57 -0700 |
commit | 4c794c7834ecbabd7ed0fa16ddbb1e6d4f692b5a (patch) | |
tree | 23f55a371cbe4f11a0a4a5f2c459b83da485282c /src/gallium/tests | |
parent | 7fee8fed1694a77894200468d942ab89746349f4 (diff) |
meson: Build gallium trivial tests
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/tests')
-rw-r--r-- | src/gallium/tests/meson.build | 21 | ||||
-rw-r--r-- | src/gallium/tests/trivial/meson.build | 29 |
2 files changed, 50 insertions, 0 deletions
diff --git a/src/gallium/tests/meson.build b/src/gallium/tests/meson.build new file mode 100644 index 00000000000..1779874fb1a --- /dev/null +++ b/src/gallium/tests/meson.build @@ -0,0 +1,21 @@ +# 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. + +subdir('trivial') diff --git a/src/gallium/tests/trivial/meson.build b/src/gallium/tests/trivial/meson.build new file mode 100644 index 00000000000..bbb25519e12 --- /dev/null +++ b/src/gallium/tests/trivial/meson.build @@ -0,0 +1,29 @@ +# 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. + +foreach t : ['compute', 'tri', 'quad-tex'] + executable( + t, + '@[email protected]'.format(t), + include_directories : inc_common, + link_with : [libmesa_util, libgallium, libpipe_loader_dynamic], + install : false, + ) +endforeach |