File: meson.build

package info (click to toggle)
gdbuspp 3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,164 kB
  • sloc: cpp: 9,462; python: 477; sh: 215; makefile: 11
file content (28 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (2)
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
#  GDBus++ - glib2 GDBus C++ wrapper
#
#  SPDX-License-Identifier: AGPL-3.0-only
#
#  Copyright (C)  OpenVPN Inc <sales@openvpn.net>
#  Copyright (C)  David Sommerseth <davids@openvpn.net>


regr_glib2_utils = executable(
    'glib2_utils',
    [
        'glib2_utils.cpp',
    ],
    link_with: [
        gdbuspp_lib.get_static_lib(),
    ],
    dependencies: [
            glib2_deps,
    ]
)

test('regression-glib2-utils',
    regr_glib2_utils,
    priority: 100,
    timeout: 5,
    is_parallel: true,
    suite: 'standalone'
)