summaryrefslogtreecommitdiff
path: root/tests/amdgpu
diff options
context:
space:
mode:
Diffstat (limited to 'tests/amdgpu')
-rw-r--r--tests/amdgpu/meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
new file mode 100644
index 00000000..af5e74c7
--- /dev/null
+++ b/tests/amdgpu/meson.build
@@ -0,0 +1,19 @@
+
+amdgpu_progs = []
+amdgpu_deps = test_deps
+if libdrm_amdgpu.found()
+ amdgpu_progs += [ 'amd_basic',
+ 'amd_cs_nop',
+ 'amd_prime',
+ ]
+ amdgpu_deps += libdrm_amdgpu
+endif
+
+foreach prog : amdgpu_progs
+ test_executables += executable(prog, prog + '.c',
+ dependencies : amdgpu_deps,
+ install_dir : join_paths(libexecdir, 'amdgpu'),
+ install_rpath : rpathdir,
+ install : true)
+ test_progs += join_paths('amdgpu', prog)
+endforeach