-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson.build
More file actions
45 lines (43 loc) · 1.19 KB
/
meson.build
File metadata and controls
45 lines (43 loc) · 1.19 KB
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
config_data = configuration_data()
config_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
config_data.set_quoted('GETTEXT_PACKAGE', meson.project_name())
config_file = configure_file(
input: 'Config.vala.in',
output: '@BASENAME@',
configuration: config_data
)
sources = [
'Indicator.vala',
'PopoverWidget.vala',
'DBus' / 'AccountsService.vala',
'DBus' / 'EndSessionDialogServer.vala',
'DBus' / 'LockInterface.vala',
'DBus' / 'PowerProfiles.vala',
'DBus' / 'SensorProxy.vala',
'DBus' / 'SessionInterface.vala',
'DBus' / 'SystemInterface.vala',
'DBus' / 'UPower.vala',
'Views' / 'A11yView.vala',
'Widgets' / 'DarkModeToggle.vala',
'Widgets' / 'EndSessionDialog.vala',
'Widgets' / 'PowerModeToggle.vala',
'Widgets' / 'RotationToggle.vala',
'Widgets' / 'SettingsToggle.vala',
'Widgets' / 'SessionBox.vala'
]
shared_module(
'quick-settings',
config_file,
gresource,
sources,
dependencies: [
glib_dep,
gobject_dep,
granite_dep,
gtk_dep,
handy_dep,
wingpanel_dep
],
install: true,
install_dir : wingpanel_indicatorsdir
)