Files
eg25-manager/src/meson.build
Arnaud Ferraris 0e2311fb36 Rename executable to eg25-manager
This brings more consistency with how other components are named
(repo, package, service file, manpages...).
2022-02-19 15:17:27 +01:00

34 lines
643 B
Meson

#
# Copyright (C) 2020 Arnaud Ferraris <arnaud.ferraris@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
subdir('libgdbofono')
src = [
'at.c', 'at.h',
'config.c', 'config.h',
'gpio.c', 'gpio.h',
'manager.c', 'manager.h',
'ofono-iface.c', 'ofono-iface.h',
'suspend.c', 'suspend.h',
'toml.c', 'toml.h',
'udev.c', 'udev.h',
'gnss.c', 'gnss.h',
gdbofono_headers,
]
if mmglib_dep.found()
src += ['mm-iface.c', 'mm-iface.h']
endif
executable (
'eg25-manager',
src,
dependencies : mgr_deps,
link_with: gdbofono_lib,
install : true
)