summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/meson.build9
1 files changed, 3 insertions, 6 deletions
diff --git a/benchmarks/meson.build b/benchmarks/meson.build
index fa7f0764..4afd204f 100644
--- a/benchmarks/meson.build
+++ b/benchmarks/meson.build
@@ -12,7 +12,6 @@ benchmark_progs = [
'gem_prw',
'gem_set_domain',
'gem_syslatency',
- 'gem_wsim',
'kms_vblank',
'prime_lookup',
'vgem_mmap',
@@ -31,11 +30,9 @@ endif
foreach prog : benchmark_progs
# FIXME meson doesn't like binaries with the same name
# meanwhile just suffix with _bench
- link = []
- if prog == 'gem_wsim'
- link += lib_igt_perf
- endif
executable(prog + '_bench', prog + '.c',
- link_with : link,
dependencies : test_deps)
endforeach
+
+executable('gem_wsim_bench', 'gem_wsim.c',
+ dependencies : test_deps + [ lib_igt_perf ])