diff options
| author | Michael Biebl <biebl@debian.org> | 2022-01-13 22:30:39 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-01-13 22:30:39 +0100 |
| commit | 88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (patch) | |
| tree | 71f32df6617802270e8a78574bd8e1637dc532f4 /src/nm-priv-helper/meson.build | |
| parent | e74c568b07b50b97873fb4ee1d776dedefbd54d6 (diff) | |
New upstream version 1.34.0 upstream/1.34.0
Diffstat (limited to 'src/nm-priv-helper/meson.build')
| -rw-r--r-- | src/nm-priv-helper/meson.build | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/nm-priv-helper/meson.build b/src/nm-priv-helper/meson.build new file mode 100644 index 00000000..e9f8a7c3 --- /dev/null +++ b/src/nm-priv-helper/meson.build @@ -0,0 +1,36 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +configure_file( + input: 'org.freedesktop.nm-priv-helper.service.in', + output: '@BASENAME@', + install_dir: dbus_system_bus_services_dir, + configuration: data_conf, +) + +install_data( + 'nm-priv-helper.conf', + install_dir: dbus_conf_dir, +) + +executable( + 'nm-priv-helper', + 'nm-priv-helper.c', + include_directories : [ + src_inc, + top_inc, + ], + dependencies: [ + glib_dep, + ], + link_with: [ + libnm_base, + libnm_log_null, + libnm_glib_aux, + libnm_std_aux, + libc_siphash, + ], + link_args: ldflags_linker_script_binary, + link_depends: linker_script_binary, + install: true, + install_dir: nm_libexecdir, +) |