File: meson.build

package info (click to toggle)
gxr-openvr 0.15.1-2
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm, bullseye
  • size: 1,724 kB
  • sloc: ansic: 15,256; sh: 72; xml: 71; awk: 35; makefile: 19
file content (40 lines) | stat: -rw-r--r-- 1,001 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
test_overlay_pixbuf = executable(
  'test_overlay', ['test_overlay.c', test_resources],
  dependencies: gxr_deps,
  link_with: gxr_lib,
  include_directories: gxr_inc,
  install: false)
test('test_overlay',
     test_overlay_pixbuf,
     suite: ['xr'],
     is_parallel : false)

test_io = executable(
  'test_io', ['test_io.c', test_resources],
  dependencies: gxr_deps,
  link_with: gxr_lib,
  include_directories: gxr_inc,
  install: false)
test('test_io', test_io)

test_context = executable(
  'test_context', ['test_context.c', test_resources],
  dependencies: gxr_deps,
  link_with: gxr_lib,
  include_directories: gxr_inc,
  install: false)
test('test_context',
     test_context,
     suite: ['xr'],
     is_parallel : false)

test_actions = executable(
  'test_actions', ['test_actions.c', test_resources],
  dependencies: gxr_deps,
  link_with: gxr_lib,
  include_directories: gxr_inc,
  install: false)
test('test_actions',
     test_actions,
     suite: ['xr'],
     is_parallel : false)