NetworkManager/src/nm-online/meson.build
Thomas Haller 09fb7877a9
build: fix linking libnm-log-null into different test programs
We require these, otherwise we can get a linker error about
_nm_utils_monotonic_timestamp_initialized symbol being undefined.
2021-07-05 14:51:27 +02:00

20 lines
373 B
Meson

# SPDX-License-Identifier: LGPL-2.1-or-later
executable(
'nm-online',
'nm-online' + '.c',
dependencies: [
libnm_dep,
glib_dep,
],
link_with: [
libnm_client_aux_extern,
libnm_log_null,
libnm_glib_aux,
libnm_std_aux,
libc_siphash,
],
link_args: ldflags_linker_script_binary,
link_depends: linker_script_binary,
install: true,
)