-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmeson.build
More file actions
32 lines (27 loc) · 618 Bytes
/
Copy pathmeson.build
File metadata and controls
32 lines (27 loc) · 618 Bytes
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
project('exhibit', 'c',
version: '1.9.2',
meson_version: '>= 1.1.0',
default_options: [ 'c_std=gnu11',
'cpp_std=gnu++2a',
'warning_level=2',
'werror=false',
],
)
i18n = import('i18n')
gnome = import('gnome')
subdir('data')
subdir('src')
subdir('po')
subdir('help')
subdir('libexhibit')
if get_option('docs')
subdir('docs')
endif
if get_option('thumbnailer')
subdir('thumbnailer')
endif
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)