-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
meson.build
46 lines (39 loc) · 1.16 KB
/
meson.build
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
project(
'power',
'vala', 'c',
version: '8.0.1'
)
gettext_name = 'io.elementary.settings.' + meson.project_name()
gnome = import('gnome')
i18n = import('i18n')
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
libdir = join_paths(prefix, get_option('libdir'))
libexecdir = join_paths(prefix, get_option('libexecdir'))
add_project_arguments(
'-DGETTEXT_PACKAGE="@0@"'.format(gettext_name),
'-DG_LOG_DOMAIN="@0@"'.format(gettext_name),
language:'c'
)
conf_data = configuration_data()
conf_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
conf_data.set_quoted('GETTEXT_PACKAGE', gettext_name)
conf_file = configure_file(
input: 'src/Config.vala.in',
output: '@BASENAME@',
configuration: conf_data
)
adw_dep = dependency('libadwaita-1')
dbus_dep = dependency('dbus-1')
glib_dep = dependency('glib-2.0')
gio_dep = dependency('gio-2.0', version: '>=2.74')
polkit_dep = dependency('polkit-gobject-1')
plug_resources = gnome.compile_resources (
'plug_resources',
'data/icons.gresource.xml',
source_dir: 'data'
)
subdir('src')
subdir('cli')
subdir('data')
subdir('po')