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
|
gcr_dep = [dependency('gcr-base-3')]
deps = common_deps + network_manager_deps + gcr_dep + [polkit_gobject_dep]
panels_list += cappletname
desktop = 'gnome-@0@-panel.desktop'.format(cappletname)
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
)
sources = files(
'cc-wwan-panel.c',
'cc-wwan-device.c',
'cc-wwan-data.c',
'cc-wwan-device-page.c',
'cc-wwan-mode-dialog.c',
'cc-wwan-network-dialog.c',
'cc-wwan-details-dialog.c',
'cc-wwan-sim-lock-dialog.c',
'cc-wwan-apn-dialog.c',
)
resource_data = files(
'cc-wwan-panel.ui',
'cc-wwan-device-page.ui',
'cc-wwan-mode-dialog.ui',
'cc-wwan-network-dialog.ui',
'cc-wwan-details-dialog.ui',
'cc-wwan-sim-lock-dialog.ui',
'cc-wwan-apn-dialog.ui',
)
sources += gnome.compile_resources(
'cc-' + cappletname + '-resources',
cappletname + '.gresource.xml',
c_name : 'cc_' + cappletname,
dependencies : resource_data,
export : true
)
cflags += '-DGNOMELOCALEDIR="@0@"'.format(control_center_localedir)
panels_libs += static_library(
cappletname,
sources : sources,
include_directories : [ top_inc, common_inc ],
dependencies : deps,
c_args : cflags
)
|