generated from tau-OS/vala-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
82 lines (70 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
project('com.fyralabs.Mondai', 'vala', version: '0.1.0')
gnome = import('gnome')
i18n = import('i18n')
add_project_arguments(
[
'--target-glib=2.68',
],
language: 'vala',
)
if get_option('development')
app_id = 'com.fyralabs.Mondai'
name_suffix = ' (Development)'
else
app_id = 'com.fyralabs.Mondai'
name_suffix = ''
endif
conf = configuration_data()
conf.set_quoted('APP_ID', app_id)
conf.set_quoted('NAME_SUFFIX', name_suffix)
conf.set_quoted('VERSION', meson.project_version())
conf.set_quoted('GETTEXT_PACKAGE', app_id)
conf.set_quoted(
'LOCALEDIR',
join_paths(get_option('prefix'), get_option('localedir')),
)
conf.set10('DEVELOPMENT', get_option('development'))
configure_file(output: 'config.h', configuration: conf)
subproject('blueprint-compiler', required: false)
add_project_arguments(
'-include',
'config.h',
'-DGETTEXT_PACKAGE="@0@"'.format(app_id),
language: 'c',
)
add_project_arguments(
'--gresourcesdir',
meson.current_build_dir() / 'data',
language: ['vala'],
)
subdir('data')
sources = [
asresources,
'src/Config.vapi',
'src/ProductItem.vala',
'src/Application.vala',
'src/MainWindow.vala',
]
dependencies = [
dependency('gio-2.0'),
dependency('gtk4'),
dependency('glib-2.0'),
dependency('gobject-2.0'),
dependency('gee-0.8'),
dependency('libhelium-1'),
dependency('gmodule-2.0'),
dependency('libsoup-3.0'),
dependency('json-glib-1.0'),
]
executable(
meson.project_name(),
sources,
asresources,
dependencies: dependencies,
install: true,
)
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)