-
Notifications
You must be signed in to change notification settings - Fork 21
/
meson.build
183 lines (149 loc) · 6.1 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# Meson build file
#
# SPDX-FileCopyrightText: 2021 Comcast Cable Communications Management, LLC
# SPDX-License-Identifier: Apache-2.0
project('cjwt', 'c',
version: '2.3.0',
license: ['Apache-2.0'],
meson_version: '>= 0.60.3',
default_options: ['c_std=c99',
'b_coverage=true'])
if not meson.is_subproject()
# We want strict flags
warning_level = 3 # -Wall
werror = true
endif
################################################################################
# Common variable definitions
################################################################################
inc_base = 'include/'+meson.project_name()
################################################################################
# Generate the version header file
################################################################################
subdir('include/'+meson.project_name())
################################################################################
# Define the dependencies
################################################################################
openssl = dependency('openssl', version: '>=1.1.1', fallback:['openssl', 'openssl_dep'])
libcjson_dep = dependency('libcjson', version: '>=1.7.14', fallback: ['cjson', 'libcjson_dep'])
libtrower_base64_dep = dependency('trower-base64', version: '>=1.2.7')
################################################################################
# Define the libraries
################################################################################
inc = include_directories([inc_base])
install_headers([inc_base+'/cjwt.h', ver_h], subdir: meson.project_name())
tls = []
if openssl.version().startswith('1.1')
tls = [ 'src/jws_openssl_1.c' ]
else
tls = [ 'src/jws_openssl_3.c' ]
endif
sources = ['src/cjwt.c',
'src/print.c',
'src/utils.c',
tls ]
libcjwt = library(meson.project_name(),
sources,
include_directories: inc,
dependencies: [libcjson_dep, libtrower_base64_dep, openssl],
install: true)
################################################################################
# Define the examples
################################################################################
if not meson.is_subproject()
examples = ['hs_example', 'rs_example', 'es_example']
foreach e : examples
executable(e, ['examples/basic/'+e+'.c'],
include_directories: inc,
dependencies: [libcjson_dep, libtrower_base64_dep, openssl],
link_with: libcjwt)
endforeach
endif
################################################################################
# Define the tests
################################################################################
if not meson.is_subproject()
test_args = ['-fprofile-arcs', '-ftest-coverage', '-O0']
if meson.get_compiler('c').get_id() != 'clang'
if host_machine.system().contains('linux')
v = run_command('valgrind', '--version', check: false)
if v.returncode() == 0
add_test_setup('valgrind',
is_default: true,
exe_wrapper: [ 'valgrind',
'--leak-check=full',
'--show-reachable=yes',
'--error-exitcode=1' ],
timeout_multiplier: 4)
endif
endif
endif
cunit_dep = dependency('cunit')
common_deps = [cunit_dep, libcjson_dep, libtrower_base64_dep, openssl]
test('test utils',
executable('test_utils',
['tests/test_utils.c',
'src/utils.c'],
include_directories: inc,
dependencies: cunit_dep,
link_args: test_args))
test('test print',
executable('test_print',
['tests/test_print.c',
'src/cjwt.c',
'src/print.c',
'src/utils.c',
tls ],
include_directories: inc,
dependencies: common_deps,
link_args: test_args))
test('test cjwt new',
executable('test_cjwt_new',
['tests/test_cjwt_new.c',
'src/cjwt.c',
'src/utils.c',
tls ],
include_directories: inc,
dependencies: common_deps,
link_args: test_args))
test('test cjwt',
executable('test_cjwt',
['tests/test_cjwt.c',
'src/cjwt.c',
'src/utils.c',
tls ],
include_directories: inc,
dependencies: common_deps,
link_args: test_args))
test('test map',
executable('test_map',
['tests/test_map.c',
'src/cjwt.c',
'src/utils.c',
tls ],
include_directories: inc,
dependencies: common_deps,
link_args: test_args))
endif
################################################################################
# Add the license check target
################################################################################
reuse_bin = find_program('reuse', required: false)
if reuse_bin.found()
custom_target('license',
command: [reuse_bin, 'lint'],
build_always_stale: true,
output: ['license'])
endif
################################################################################
# Add the coverity check target
################################################################################
alias_target('coverity', libcjwt )
################################################################################
# External/consumer definitions
################################################################################
libcjwt_dep = declare_dependency(include_directories: ['include'],
link_with: libcjwt)
if meson.version().version_compare('>=0.54.0')
meson.override_dependency(meson.project_name(), libcjwt_dep)
endif