about summary refs log tree commit diff
path: root/src/nm-priv-helper/meson.build
blob: 6141e0e207533f850764f049ca56c1db62342279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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,
)