-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
meson.build
40 lines (33 loc) · 996 Bytes
/
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
project(
'notifications',
'vala', 'c',
version: '8.0.0'
)
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'))
add_project_arguments(
'-DGETTEXT_PACKAGE="@0@"'.format(gettext_name),
'-DG_LOG_DOMAIN="@0@"'.format(gettext_name),
language:'c'
)
plug_resources = gnome.compile_resources(
'plug_resources',
'data/notifications.gresource.xml',
source_dir: 'data'
)
config_data = configuration_data()
config_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
config_data.set_quoted('GETTEXT_PACKAGE', gettext_name)
config_file = configure_file(
input: 'src/Config.vala.in',
output: '@BASENAME@',
configuration: config_data
)
adw_dep = dependency('libadwaita-1', version: '>=1.4')
subdir('data')
subdir('src')
subdir('po')