mirror of
https://gitlab.com/mobian1/eg25-manager.git
synced 2025-08-28 23:03:24 +02:00
This brings more consistency with how other components are named (repo, package, service file, manpages...).
34 lines
643 B
Meson
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
|
|
)
|