summaryrefslogtreecommitdiff
path: root/examples/meson.build
blob: a9460e042727783e80eeaeeb10319051338ee307 (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
executable(
    'light-server',
    'light-server.c',
     export_dynamic : true,
     dependencies : gupnp
)

executable(
    'light-client',
    'light-client.c',
    dependencies : gupnp
)

executable(
    'get-volume',
    'get-volume.c',
    dependencies: gupnp
)

foreach program : ['browsing', 'proxy', 'server', 'introspection', 'white-list', 'context-manager']
    executable(
        'test-' + program,
        sources : 'test-@0@.c'.format(program),
        dependencies : [gupnp, gio_unix]
    )
endforeach