File: meson.build

package info (click to toggle)
libvirt-glib 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,592 kB
  • sloc: ansic: 21,146; xml: 591; sh: 471; python: 310; javascript: 30; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 624 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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',
  c_args: common_cflags + warning_cflags,
  sources: ['test-gconfig.c'],
  include_directories: top_include_dir,
  dependencies: [libvirt_gconfig_dep]
)
test('gconfig', test_gconfig, env: testenv)

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

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