NetworkManager/examples/C/qt/meson.build
Íñigo Huguet 07f463bc94 meson: replace deprecated dep.get_pkgconfig_variable
Replaced by dep.get_variable:
https://mesonbuild.com/Reference-manual_returned_dep.html#depget_variable

This get rid of the following deprecation warning:
  NOTICE: Future-deprecated features used:
   * 0.56.0: {'dependency.get_pkgconfig_variable'}
2024-04-04 08:13:38 +00:00

40 lines
803 B
Meson

# SPDX-License-Identifier: LGPL-2.1-or-later
examples = [
['add-connection-wired', []],
['list-connections', []],
['change-ipv4-addresses', []],
]
moc = find_program('moc-qt4', required: false)
if not moc.found()
moc = qt_core_dep.get_variable(pkgconfig: 'moc_location')
endif
example = 'monitor-nm-running'
output = example + '.moc'
example_moc = custom_target(
output,
input: example + '.cpp',
output: output,
command: [moc, '-i', '@INPUT@', '-o', '@OUTPUT@'],
)
examples += [[example, [example_moc]]]
foreach example: examples
executable(
example[0],
example[0] + '.cpp',
include_directories: libnm_core_public_inc,
dependencies: [
dbus_dep,
qt_core_dep,
qt_dbus_dep,
qt_network_dep,
],
link_depends: example[1],
)
endforeach