summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: b44649cf89c2328f4549d7cf196cccc4666b7a8e (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
sources = files(
    'abi_compat.c',
    'error.c',
    'names.c',
    'netplan.c',
    'networkd.c',
    'nm.c',
    'openvswitch.c',
    'parse.c',
    'parse-nm.c',
    'sriov.c',
    'types.c',
    'util.c',
    'validation.c')

linker_script = meson.project_source_root() / 'abicompat.lds'
libnetplan = library(
    'netplan',
    sources,
    gnu_symbol_visibility: 'hidden',
    link_args: ['-T', linker_script],
    link_depends: linker_script,
    dependencies: [glib, gio, yaml, uuid],
    include_directories: inc,
    soversion: '0.0',
    install: true)

libexec_netplan = join_paths(get_option('libexecdir'), 'netplan')
executable(
    'generate',
    'generate.c',
    include_directories: inc,
    link_with: libnetplan,
    dependencies: [glib, gio, yaml, uuid],
    install_dir: libexec_netplan,
    install: true)
install_symlink(
    'netplan',
    pointing_to: join_paths('..', '..', '..') + join_paths(get_option('prefix'), libexec_netplan, 'generate'),
    install_dir: systemd_generator_dir)
# Install this symlink for legacy reasons, see netplan/cli/utils.py: get_generator_path()
install_symlink(
    'generate',
    pointing_to: join_paths('..', '..') + join_paths(get_option('prefix'), libexec_netplan, 'generate'),
    install_dir: join_paths('/', 'lib', 'netplan'))