-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
103 lines (91 loc) · 2.56 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
project('gmobile', 'c',
version: '0.1.0',
license: 'LGPLv2.1+',
meson_version: '>= 0.56.1',
default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11' ],
)
cc = meson.get_compiler('c')
prefix = get_option('prefix')
bindir = join_paths(prefix, get_option('bindir'))
datadir = join_paths(prefix, get_option('datadir'))
localedir = join_paths(prefix, get_option('localedir'))
libdir = join_paths(prefix, get_option('libdir'))
pkgdatadir = join_paths(datadir, meson.project_name())
pkglibdir = join_paths(libdir, meson.project_name())
global_c_args = ['-DGMOBILE_COMPILATION']
test_c_args = [
'-Wcast-align',
'-Wdate-time',
'-Wdeclaration-after-statement',
['-Werror=format-security', '-Werror=format=2'],
'-Wendif-labels',
'-Werror=incompatible-pointer-types',
'-Werror=missing-declarations',
'-Werror=overflow',
'-Werror=return-type',
'-Werror=shift-count-overflow',
'-Werror=shift-overflow=2',
'-Werror=implicit-fallthrough=3',
'-Wfloat-equal',
'-Wformat-nonliteral',
'-Wformat-security',
'-Winit-self',
'-Wmaybe-uninitialized',
'-Wmissing-field-initializers',
'-Wmissing-include-dirs',
'-Wmissing-noreturn',
'-Wnested-externs',
'-Wno-missing-field-initializers',
'-Wno-sign-compare',
'-Wno-strict-aliasing',
'-Wno-unused-parameter',
'-Wold-style-definition',
'-Wpointer-arith',
'-Wredundant-decls',
'-Wshadow',
'-Wstrict-prototypes',
'-Wswitch-default',
'-Wswitch-enum',
'-Wtype-limits',
'-Wundef',
'-Wunused-function',
]
if get_option('buildtype') != 'plain'
test_c_args += '-fstack-protector-strong'
endif
epoll_dep = dependency('epoll-shim', required: false)
glib_dep = dependency('glib-2.0', version: '>=2.66')
gio_dep = dependency('gio-2.0', version: '>=2.66')
json_glib_dep = dependency('json-glib-1.0', version: '>= 1.6.2',
fallback: ['json-glib', 'json_glib_dep'])
foreach arg: test_c_args
if cc.has_multi_arguments(arg)
global_c_args += arg
endif
endforeach
gnome = import('gnome')
add_project_arguments(
global_c_args,
language: 'c'
)
config_h = configuration_data()
config_h.set_quoted('GM_VERSION', meson.project_version())
root_inc = include_directories('.')
gm_config_h = configure_file(
output: 'gm-config.h',
configuration: config_h,
)
subdir('data')
subdir('src')
subdir('tests')
subdir('examples')
subdir('doc')
summary({
'Examples': get_option('examples'),
'Tests': get_option('tests'),
'Introspection': get_option('introspection'),
'Docmentation': get_option('gtk_doc'),
},
bool_yn: true,
section: 'Build',
)