-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
67 lines (56 loc) · 1.45 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
project('zathura-cb', 'c',
version: '0.1.11',
meson_version: '>=0.61',
default_options: ['c_std=c17', 'warning_level=3']
)
version = meson.project_version()
version_array = version.split('.')
cc = meson.get_compiler('c')
datadir = get_option('datadir')
desktopdir = join_paths(datadir, 'applications')
metainfodir = join_paths(datadir, 'metainfo')
# required dependencies
zathura = dependency('zathura', version: '>=0.3.8')
girara = dependency('girara-gtk3')
glib = dependency('glib-2.0')
cairo = dependency('cairo')
libarchive = dependency('libarchive')
build_dependencies = [zathura, girara, glib, cairo, libarchive]
if get_option('plugindir') == ''
plugindir = zathura.get_variable(pkgconfig: 'plugindir')
else
plugindir = get_option('plugindir')
endif
# defines
defines = [
'-DVERSION_MAJOR=@0@'.format(version_array[0]),
'-DVERSION_MINOR=@0@'.format(version_array[1]),
'-DVERSION_REV=@0@'.format(version_array[2]),
'-D_DEFAULT_SOURCE',
]
# compile flags
flags = [
'-Wall',
'-Wextra',
'-pedantic',
'-Werror=implicit-function-declaration',
'-Werror=vla',
'-fvisibility=hidden'
]
flags = cc.get_supported_arguments(flags)
sources = files(
'zathura-cb/document.c',
'zathura-cb/index.c',
'zathura-cb/page.c',
'zathura-cb/plugin.c',
'zathura-cb/render.c',
'zathura-cb/utils.c'
)
cb = shared_module('cb',
sources,
dependencies: build_dependencies,
c_args: defines + flags,
install: true,
install_dir: plugindir
)
subdir('data')