summaryrefslogtreecommitdiff
path: root/src/settings/plugins/ifnet/meson.build
blob: 65d537da1844c0bd8605c002a4afe7d8379afdf7 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
sources = files(
  'nms-ifnet-connection-parser.c',
  'nms-ifnet-net-parser.c',
  'nms-ifnet-net-utils.c',
  'nms-ifnet-wpa-parser.c'
)

cflags = [
  '-DSBINDIR="@0@"'.format(nm_sbindir),
  '-DSYSCONFDIR="@0@"'.format(nm_sysconfdir)
]

libnms_ifnet_core = static_library(
  'nms-ifnet-core',
  sources: sources,
  dependencies: core_dep,
  c_args: cflags
)

sources = files(
  'nms-ifnet-connection.c',
  'nms-ifnet-plugin.c'
)

ldflags = []
if have_version_script
  ldflags += '-Wl,--version-script,@0@'.format(linker_script_settings)
endif

libnm_settings_plugin_ifnet = shared_module(
  'nm-settings-plugin-ifnet',
  sources: sources,
  dependencies: core_dep,
  c_args: cflags,
  link_with: libnms_ifnet_core,
  link_args: ldflags,
  link_depends: linker_script_settings,
  install: true,
  install_dir: nm_pkglibdir
)

core_plugins += libnm_settings_plugin_ifnet

# FIXME: check_so_symbols replacement
'''
run_target(
  'check-local-symbols-settings-ifnet',
  command: [check_so_symbols, libnm_settings_plugin_ifnet.full_path()],
  depends: libnm_settings_plugin_ifnet
)

check-local-symbols-settings-ifnet: src/settings/plugins/ifnet/libnm-settings-plugin-ifnet.la
  $(call check_so_symbols,$(builddir)/src/settings/plugins/ifnet/.libs/libnm-settings-plugin-ifnet.so)
'''

if enable_tests
  subdir('tests')
endif