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
|
|
|
'nm-online',
|
|
|
|
|
'nm-online' + '.c',
|
2019-12-06 17:09:18 +01:00
|
|
|
dependencies: [
|
|
|
|
|
libnm_dep,
|
|
|
|
|
libnm_nm_default_dep,
|
|
|
|
|
libnm_libnm_aux_dep,
|
|
|
|
|
],
|
2021-02-04 14:16:29 +01:00
|
|
|
c_args: [
|
|
|
|
|
'-DG_LOG_DOMAIN="nm-online"',
|
|
|
|
|
],
|
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
|
|
|
)
|
|
|
|
|
|
|
|
|
|
subdir('common')
|
2020-06-04 16:53:40 +02:00
|
|
|
subdir('cli')
|
2017-11-25 11:39:06 +01:00
|
|
|
|
|
|
|
|
if enable_nmtui
|
|
|
|
|
subdir('tui')
|
|
|
|
|
endif
|
2019-11-12 15:54:22 +01:00
|
|
|
|
|
|
|
|
if enable_nm_cloud_setup
|
|
|
|
|
subdir('cloud-setup')
|
|
|
|
|
endif
|