blob: f5e9c0eab2bd6fbf906af1e9a604883e1a0de35d (
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
|
name = 'nm-online'
deps = [
libnm_dep,
nm_core_dep
]
clients_cflags = [
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
'-DNMLOCALEDIR="@0@"'.format(nm_localedir),
]
cflags = clients_cflags + [
'-DG_LOG_DOMAIN="@0@"'.format(name),
]
ldflags = []
if have_version_script
ldflags += '-Wl,--version-script,@0@'.format(linker_script_binary)
endif
executable(
name,
name + '.c',
dependencies: deps,
c_args: cflags,
link_args: ldflags,
link_depends: linker_script_binary,
install: true
)
subdir('common')
if enable_nmcli
subdir('cli')
endif
if enable_nmtui
subdir('tui')
endif
|