-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson.build
More file actions
54 lines (52 loc) · 1.45 KB
/
meson.build
File metadata and controls
54 lines (52 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
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' / 'EndSessionDialogServer.vala',
'DBus' / 'LockInterface.vala',
'DBus' / 'Login1Manager.vala',
'DBus' / 'SeatInterface.vala',
'DBus' / 'SensorProxy.vala',
'DBus' / 'SessionInterface.vala',
'DBus' / 'UserInterface.vala',
'Services' / 'UserManager.vala',
'Widgets' / 'AvatarButton.vala',
'Widgets' / 'DarkModeToggle.vala',
'Widgets' / 'EndSessionDialog.vala',
'Widgets' / 'PreventSleepToggle.vala',
'Widgets' / 'RotationToggle.vala',
'Widgets' / 'SettingsToggle.vala',
'Widgets' / 'SessionBox.vala',
'Widgets' / 'TextScale.vala',
'Widgets' / 'UserList.vala',
'Widgets' / 'UserRow.vala',
]
shared_module(
'quick-settings',
config_file,
gresource,
sources,
dependencies: [
gdk_wl_dep,
glib_dep,
gobject_dep,
granite_dep,
gtk_dep,
handy_dep,
wingpanel_dep,
packagekit_dep,
pantheon_desktop_shell_dep,
portal_dep,
wl_client_dep,
accountsservice_dep
],
install: true,
install_dir : wingpanel_indicatorsdir
)