-
Notifications
You must be signed in to change notification settings - Fork 2
/
meson.build
89 lines (78 loc) · 2.12 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
83
84
85
86
87
88
89
project('com.fyralabs.Enigma', 'vala',
version: '0.1.0',
meson_version: '>= 0.50.0'
)
gnome = import('gnome')
i18n = import('i18n')
add_project_arguments([
'--target-glib=2.68',
'--gresourcesdir', meson.current_build_dir() / 'data',
],
language: 'vala',
)
if get_option('development')
app_id = 'com.fyralabs.Enigma.Devel'
name_suffix = ' (Nightly)'
else
app_id = 'com.fyralabs.Enigma'
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'
)
subdir('data')
sources = [
'src/Application.vala',
'src/Models/Doc.vala',
'src/Repositories/DocRepository.vala',
'src/Services/SettingsManager.vala',
'src/Utils/FileUtils.vala',
'src/Utils/MiscUtils.vala',
'src/Utils/Sorter.vala',
'src/Utils/ObservableList.vala',
'src/Utils/ThreadUtils.vala',
'src/ViewModels/DocViewModel.vala',
'src/Views/ContentView.vala',
'src/Views/Sidebar.vala',
'src/Views/View.vala',
'src/Widgets/DocRowContent.vala',
'src/Widgets/PreferencesWindow.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('gtksourceview-5'),
dependency('json-glib-1.0'),
meson.get_compiler('c').find_library('m', required: true)
]
executable(
meson.project_name(),
sources,
asresources,
dependencies: dependencies,
vala_args: [meson.project_source_root() + '/src/config.vapi'],
install : true
)
subdir('po')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true
)