-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
73 lines (63 loc) · 1.84 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('com.fyralabs.Modi',
'vala', 'c',
version: '0.1.0'
)
gnome = import('gnome')
i18n = import('i18n')
if get_option('development')
app_id = 'com.fyralabs.Modi.Devel'
name_suffix = ' (Nightly)'
else
app_id = 'com.fyralabs.Modi'
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)
config_h_dir = include_directories('.')
add_project_arguments(
'-include', 'config.h',
'-DGETTEXT_PACKAGE="@0@"'.format(app_id),
language: 'c'
)
asresources = gnome.compile_resources(
'as-resources', 'data/gresource.xml',
source_dir: 'data',
c_name: 'as'
)
libgtk_dep = dependency('gtk4', version: '>=4.0.0', required: true)
libhelium_dep = dependency('libhelium-1')
sources = files(
'src/Application.vala',
'src/MainWindow.vala',
'src/PictureFile.vala',
'src/Canvas.vala',
'src/Viewer.vala',
)
executable(
meson.project_name(),
asresources,
sources,
dependencies: [
dependency('glib-2.0', version: '>=2.30.0'),
dependency('gee-0.8', version: '>=0.8.5'),
dependency('json-glib-1.0', version: '>=1.4.4'),
libgtk_dep,
libhelium_dep,
dependency('libbismuth-1', fallback: [ 'libbismuth', 'libbismuth_dep' ], version: '>=1.0.0'),
meson.get_compiler('c').find_library('m', required: true)
],
vala_args: [meson.project_source_root() + '/src/Config.vapi'],
install: true,
)
subdir('data')
subdir('po')
gnome.post_install(
gtk_update_icon_cache: true,
update_desktop_database: true
)