forked from abb128/LiveCaptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
40 lines (32 loc) · 950 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('livecaptions', 'c',
version: '0.1.0',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2',
'werror=false',
'c_std=gnu11',
],
)
cmake = import('cmake')
april = cmake.subproject('april-asr')
april_lib = april.dependency('aprilasr_static')
i18n = import('i18n')
gnome = import('gnome')
config_h = configuration_data()
config_h.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h.set_quoted('GETTEXT_PACKAGE', 'livecaptions')
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
configure_file(
output: 'livecaptions-config.h',
configuration: config_h,
)
add_project_arguments([
'-I' + meson.project_build_root(),
], language: 'c')
subdir('data')
subdir('src')
subdir('po')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)