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 (51 lines) | stat: -rw-r--r-- 1,023 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2021 IƱigo Martinez <inigomartinez@gmail.com>

sources = files(
  'mmcli-bearer.c',
  'mmcli.c',
  'mmcli-call.c',
  'mmcli-cbm.c',
  'mmcli-common.c',
  'mmcli-manager.c',
  'mmcli-modem-3gpp.c',
  'mmcli-modem-3gpp-profile-manager.c',
  'mmcli-modem-3gpp-ussd.c',
  'mmcli-modem.c',
  'mmcli-modem-cell-broadcast.c',
  'mmcli-modem-cdma.c',
  'mmcli-modem-firmware.c',
  'mmcli-modem-location.c',
  'mmcli-modem-messaging.c',
  'mmcli-modem-oma.c',
  'mmcli-modem-sar.c',
  'mmcli-modem-signal.c',
  'mmcli-modem-simple.c',
  'mmcli-modem-time.c',
  'mmcli-modem-voice.c',
  'mmcli-output.c',
  'mmcli-sim.c',
  'mmcli-sms.c',
)

deps = [libmm_glib_dep]

if enable_udev
  deps += gudev_dep
endif

executable(
  'mmcli',
  sources: sources,
  include_directories: top_inc,
  dependencies: deps,
  install: true,
)

if enable_bash_completion
  install_data(
    'mmcli-completion',
    install_dir: bash_completion_completionsdir,
    rename: 'mmcli',
  )
endif