forked from alainm23/planify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
73 lines (60 loc) · 1.79 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
project(
'io.github.alainm23.planify',
'vala', 'c',
version: '4.1.1'
)
gnome = import('gnome')
i18n = import('i18n')
add_global_arguments('-DGETTEXT_PACKAGE="@0@"'.format (meson.project_name()), language:'c')
add_project_arguments('-DLIBICAL_GLIB_UNSTABLE_API=1', language: 'c')
############
# Resources #
############
asresources = gnome.compile_resources (
'as-resources', 'data/resources/io.github.alainm23.planify.gresource.xml',
source_dir: 'data',
c_name: 'as'
)
###########
# Profile #
###########
profile = get_option('profile')
if profile == 'development'
find_program('git')
rev_txt = run_command('git','rev-parse','--short','HEAD').stdout().strip()
rev = '-@0@'.format(rev_txt)
application_id = 'io.github.alainm23.planify.Devel'
else
rev = ''
application_id = 'io.github.alainm23.planify'
endif
############
# config.vala #
############
conf_data = configuration_data()
conf_data.set_quoted('APPLICATION_ID', application_id)
conf_data.set_quoted('GETTEXT_PACKAGE', application_id)
conf_data.set_quoted('VERSION', meson.project_version())
conf_data.set_quoted('LOCALEDIR', get_option('prefix') / get_option('localedir'))
conf_data.set_quoted('PACKAGE_VERSION', meson.project_version())
conf_data.set_quoted('PREFIX', get_option('prefix'))
conf_data.set_quoted('DATADIR', join_paths (get_option('prefix'), get_option('datadir')))
conf_data.set_quoted('PROFILE', profile)
config_file = configure_file(
input : 'config.vala.in',
output : 'config.vala',
configuration : conf_data
)
subdir('src')
subdir('quick-add')
subdir('data')
subdir('po')
summary({
'Tracing': get_option('tracing'),
'Profile': get_option('profile'),
}, section: 'Development')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)