File: meson.build

package info (click to toggle)
modemmanager 1.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,480 kB
  • sloc: ansic: 237,886; xml: 2,433; python: 1,211; sh: 349; javascript: 60; makefile: 21
file content (23 lines) | stat: -rw-r--r-- 512 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
20
21
22
23
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2021 IƱigo Martinez <inigomartinez@gmail.com>

test_units = {
  'mmcbmmonitor': libhelpers_dep,
  'mmrules': libkerneldevice_dep,
  'mmsmsmonitor': libhelpers_dep,
  'mmsmspdu': libhelpers_dep,
  'mmtty': libport_dep,
}

if enable_udev
  test_units += {'lsudev': gudev_dep}
endif

foreach test_unit, test_deps: test_units
  executable(
    test_unit,
    test_unit + '.c',
    include_directories: top_inc,
    dependencies: test_deps,
  )
endforeach