File: meson.build

package info (click to toggle)
intel-gpu-tools 2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 62,024 kB
  • sloc: xml: 769,439; ansic: 348,692; python: 8,307; yacc: 2,781; perl: 1,196; sh: 1,178; lex: 487; asm: 227; makefile: 27; lisp: 11
file content (20 lines) | stat: -rw-r--r-- 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
v3d_progs = [
	'v3d_create_bo',
	'v3d_get_bo_offset',
	'v3d_get_param',
	'v3d_job_submission',
	'v3d_mmap',
	'v3d_submit_cl',
	'v3d_submit_csd',
	'v3d_perfmon',
	'v3d_wait_bo',
]

foreach prog : v3d_progs
	test_executables += executable(prog, prog + '.c',
				       dependencies : test_deps,
				       install_dir : v3ddir,
				       install_rpath : v3d_rpathdir,
				       install : true)
	test_list += join_paths('v3d', prog)
endforeach