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)
|