File: meson.build

package info (click to toggle)
libvirt-glib 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,444 kB
  • sloc: ansic: 21,204; xml: 591; python: 310; sh: 121; javascript: 30; makefile: 12
file content (20 lines) | stat: -rw-r--r-- 540 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
testenv = environment()
testenv.append('G_TEST_SRCDIR', meson.current_source_dir())
testenv.append('G_TEST_BUILDDIR', meson.current_build_dir())

test_gconfig = executable(
  'test-gconfig',
  sources: ['test-gconfig.c'],
  include_directories: top_include_dir,
  dependencies: [libvirt_gconfig_dep]
)
test('gconfig', test_gconfig, env: testenv)

test_events = executable(
  'test-events',
  sources: ['test-events.c'],
  include_directories: top_include_dir,
  dependencies: [libvirt_glib_dep]
)

test('events', test_events, env: testenv)