2020-12-23 22:21:36 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2020-01-14 10:42:24 +01:00
|
|
|
|
2017-11-25 11:39:06 +01:00
|
|
|
executable(
|
2021-02-04 14:16:29 +01:00
|
|
|
'nmtui',
|
|
|
|
|
files(
|
|
|
|
|
'nm-editor-bindings.c',
|
|
|
|
|
'nm-editor-utils.c',
|
|
|
|
|
'nmt-address-list.c',
|
|
|
|
|
'nmt-connect-connection-list.c',
|
|
|
|
|
'nmt-device-entry.c',
|
|
|
|
|
'nmt-edit-connection-list.c',
|
|
|
|
|
'nmt-editor.c',
|
|
|
|
|
'nmt-editor-grid.c',
|
|
|
|
|
'nmt-editor-page.c',
|
|
|
|
|
'nmt-editor-page-device.c',
|
|
|
|
|
'nmt-editor-section.c',
|
|
|
|
|
'nmt-ip-entry.c',
|
|
|
|
|
'nmt-mac-entry.c',
|
|
|
|
|
'nmt-mtu-entry.c',
|
|
|
|
|
'nmt-page-bond.c',
|
2021-08-23 22:00:54 +08:00
|
|
|
'nmt-page-bond-port.c',
|
2021-02-04 14:16:29 +01:00
|
|
|
'nmt-page-bridge.c',
|
|
|
|
|
'nmt-page-bridge-port.c',
|
|
|
|
|
'nmt-page-dsl.c',
|
|
|
|
|
'nmt-page-ethernet.c',
|
|
|
|
|
'nmt-page-infiniband.c',
|
|
|
|
|
'nmt-page-ip4.c',
|
|
|
|
|
'nmt-page-ip6.c',
|
|
|
|
|
'nmt-page-ip-tunnel.c',
|
|
|
|
|
'nmt-page-ppp.c',
|
|
|
|
|
'nmt-page-team.c',
|
|
|
|
|
'nmt-page-team-port.c',
|
|
|
|
|
'nmt-page-vlan.c',
|
|
|
|
|
'nmt-page-wifi.c',
|
2021-01-27 19:27:12 +01:00
|
|
|
'nmt-page-wireguard.c',
|
2021-02-04 14:16:29 +01:00
|
|
|
'nmt-password-dialog.c',
|
|
|
|
|
'nmt-password-fields.c',
|
|
|
|
|
'nmt-route-editor.c',
|
|
|
|
|
'nmt-route-entry.c',
|
|
|
|
|
'nmt-route-table.c',
|
|
|
|
|
'nmt-slave-list.c',
|
2021-01-27 19:27:12 +01:00
|
|
|
'nmt-wireguard-peer-list.c',
|
|
|
|
|
'nmt-wireguard-peer-editor.c',
|
2021-02-04 14:16:29 +01:00
|
|
|
'nmtui.c',
|
|
|
|
|
'nmtui-connect.c',
|
|
|
|
|
'nmtui-edit.c',
|
|
|
|
|
'nmtui-hostname.c',
|
|
|
|
|
'nmt-utils.c',
|
|
|
|
|
'nmt-widget-list.c',
|
|
|
|
|
),
|
|
|
|
|
dependencies: [
|
2021-02-24 20:14:36 +01:00
|
|
|
libnm_dep,
|
2021-03-14 14:54:09 +01:00
|
|
|
newt_dep,
|
2021-02-24 11:52:51 +01:00
|
|
|
glib_dep,
|
|
|
|
|
],
|
|
|
|
|
link_with: [
|
2021-03-01 13:43:47 +01:00
|
|
|
libnmt_newt,
|
2021-03-01 12:42:48 +01:00
|
|
|
libnmc_setting,
|
|
|
|
|
libnmc_base,
|
2021-02-24 20:14:36 +01:00
|
|
|
libnm_client_aux_extern,
|
2021-02-24 14:26:46 +01:00
|
|
|
libnm_core_aux_extern,
|
2021-02-24 14:19:32 +01:00
|
|
|
libnm_core_aux_intern,
|
2021-02-24 13:42:05 +01:00
|
|
|
libnm_base,
|
2021-02-24 11:52:51 +01:00
|
|
|
libnm_log_null,
|
|
|
|
|
libnm_glib_aux,
|
|
|
|
|
libnm_std_aux,
|
|
|
|
|
libc_siphash,
|
2021-02-04 14:16:29 +01:00
|
|
|
],
|
2018-01-11 12:34:40 +01:00
|
|
|
link_args: ldflags_linker_script_binary,
|
2017-11-25 11:39:06 +01:00
|
|
|
link_depends: linker_script_binary,
|
2018-10-18 12:50:20 +02:00
|
|
|
install: true,
|
2017-11-25 11:39:06 +01:00
|
|
|
)
|