From 37e9695d51dafddb5535b79576d40cacd0c61de2 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Tue, 20 Mar 2018 13:34:48 +0100 Subject: [PATCH] tegra: Install tegra-openclose test Allow this simple test to be installed so that it can easily be run on a target device. Reviewed-by: Mikko Perttunen Signed-off-by: Thierry Reding --- tests/tegra/.gitignore | 2 +- tests/tegra/meson.build | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/tegra/.gitignore b/tests/tegra/.gitignore index 5c5216c5..56cfb62b 100644 --- a/tests/tegra/.gitignore +++ b/tests/tegra/.gitignore @@ -1 +1 @@ -openclose +tegra-openclose diff --git a/tests/tegra/meson.build b/tests/tegra/meson.build index 4f8c54f4..fbf4e6d8 100644 --- a/tests/tegra/meson.build +++ b/tests/tegra/meson.build @@ -18,10 +18,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +inc_tegra = include_directories('../../tegra') + openclose = executable( - 'openclose', + 'tegra-openclose', files('openclose.c'), - include_directories : [inc_root, inc_drm, include_directories('../../tegra')], + include_directories : [inc_root, inc_drm, inc_tegra], c_args : libdrm_c_args, link_with : [libdrm, libdrm_tegra], + install : with_install_tests, )