File: meson.build

package info (click to toggle)
gssdp 1.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,608 kB
  • sloc: ansic: 7,127; javascript: 582; python: 32; makefile: 17; xml: 9
file content (19 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
resource = gnome.compile_resources(
    'org.gupnp.GSSDP.DeviceSniffer',
    'gssdp-device-sniffer.gresource.xml',
    source_dir: [meson.current_source_dir(), meson.current_source_dir() / '..' / 'doc']
)

sniffer = executable(
    'gssdp-device-sniffer',
    [
        'gssdp-device-sniffer.c',
        'main-window.c',
        'main-window.h',
        resource
    ],
    dependencies : [gssdp, gtk],
    install: true,
    export_dynamic : true,
    gui_app : true
)