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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
deps = common_deps + network_manager_deps + [
polkit_gobject_dep,
dependency('gmodule-2.0')
]
network_inc = include_directories('.')
subdir('wireless-security')
subdir('connection-editor')
subdir('icons')
panel_names = [
cappletname,
'wifi'
]
panels_list += panel_names
foreach name: panel_names
desktop = 'gnome-' + name + '-panel.desktop'
desktop_in = configure_file(
input: desktop + '.in.in',
output: desktop + '.in',
configuration: desktop_conf
)
i18n.merge_file(
type: 'desktop',
input: desktop_in,
output: desktop,
po_dir: po_dir,
install: true,
install_dir: control_center_desktopdir
)
endforeach
sources = files(
'cc-qr-code.c',
'cc-network-panel.c',
'cc-wifi-connection-row.c',
'cc-wifi-connection-list.c',
'cc-wifi-panel.c',
'cc-wifi-hotspot-dialog.c',
'net-device-bluetooth.c',
'net-device-ethernet.c',
'net-device-mobile.c',
'net-device-wifi.c',
'net-proxy.c',
'net-vpn.c',
'network-dialogs.c',
'panel-common.c',
'ui-helpers.c'
)
resource_data = files(
'cc-network-panel.ui',
'cc-wifi-connection-row.ui',
'cc-wifi-panel.ui',
'cc-wifi-hotspot-dialog.ui',
'network-bluetooth.ui',
'network-ethernet.ui',
'network-mobile.ui',
'network-proxy.ui',
'network-vpn.ui',
'network-wifi.ui',
)
sources += gnome.compile_resources(
'cc-' + cappletname + '-resources',
cappletname + '.gresource.xml',
c_name: 'cc_' + cappletname,
dependencies: resource_data,
export: true
)
network_panel_lib = static_library(
cappletname,
sources: sources,
include_directories: [top_inc, common_inc],
dependencies: deps,
c_args: cflags,
link_with: libconnection_editor
)
panels_libs += network_panel_lib
|