summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 43c007032403a463cdfe3c5147102bf837a974fd (plain)
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
executable(
    'test-search-criteria-parser',
    [
        'test-search-criteria-parser.c'
    ],
    c_args : common_cflags,
    include_directories: config_h_inc,
    dependencies : [gobject, libxml, gupnp_av]
)

check_search = executable(
    'check-search',
    'check-search.c',
    c_args : common_cflags,
    include_directories: config_h_inc,
    dependencies : [gobject, libxml, gupnp_av]
)

check_feature_list_parser = executable(
    'check-feature-list-parser',
    'check-feature-list-parser.c',
    c_args : common_cflags,
    include_directories: config_h_inc,
    dependencies : [gobject, libxml, gupnp_av]
)

fragments = executable(
    'fragments',
    'fragments.c',
    c_args : [common_cflags, '-DABS_TOP_SRCDIR="@0@"'.format(meson.source_root())],
    include_directories: config_h_inc,
    dependencies : [gobject, libxml, gupnp_av]
)

test('check-search', check_search)
test('check-feature-list-parser', check_feature_list_parser)
test('fragments', fragments)

subdir('gtest')