forked from elementary/switchboard-plug-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
36 lines (30 loc) · 870 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
project(
'networking',
'vala', 'c',
version: '2.4.4'
)
gettext_name = meson.project_name() + '-plug'
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),
language:'c'
)
add_project_arguments(
'--vapidir', join_paths(meson.current_source_dir(), 'vapi'),
language: 'vala'
)
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() + '-plug')
config_file = configure_file(
input: 'src/Config.vala.in',
output: '@BASENAME@',
configuration: config_data
)
subdir('data')
subdir('src')
subdir('po')