summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2017-12-07 15:40:28 +0200
committerPetri Latvala <petri.latvala@intel.com>2017-12-21 11:21:43 +0200
commit9e0ba879e2e19f0d7d8549b928929678afc06ff3 (patch)
treee1365a0807a1497870723953a2cd3aa2ef488a65 /benchmarks
parent42e69563b7c6e835a54f3d91b6cad1d5549b74fc (diff)
meson: Install benchmarks to $libexec/intel-gpu-tools/benchmarks
Signed-off-by: Petri Latvala <petri.latvala@intel.com> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/benchmarks/meson.build b/benchmarks/meson.build
index 4afd204f..26d65c4b 100644
--- a/benchmarks/meson.build
+++ b/benchmarks/meson.build
@@ -31,8 +31,12 @@ foreach prog : benchmark_progs
# FIXME meson doesn't like binaries with the same name
# meanwhile just suffix with _bench
executable(prog + '_bench', prog + '.c',
+ install : true,
+ install_dir : join_paths(get_option('libexecdir'), 'intel-gpu-tools', 'benchmarks'),
dependencies : test_deps)
endforeach
executable('gem_wsim_bench', 'gem_wsim.c',
+ install : true,
+ install_dir : join_paths(get_option('libexecdir'), 'intel-gpu-tools', 'benchmarks'),
dependencies : test_deps + [ lib_igt_perf ])