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
|
project('jose', 'c', license: 'APL2',
version: '14',
default_options: [
'c_std=gnu99',
'prefix=/usr',
'warning_level=2',
'werror=true'
],
meson_version: '>=0.47.0',
)
licensedir = join_paths(get_option('prefix'), 'share', 'licenses', meson.project_name())
if host_machine.system() == 'freebsd'
licensedir += '-'+meson.project_version()
endif
add_project_arguments(
'-Wstrict-aliasing',
'-Wchar-subscripts',
'-Wformat-security',
'-Wmissing-declarations',
'-Wmissing-prototypes',
'-Wnested-externs',
'-Wpointer-arith',
'-Wshadow',
'-Wsign-compare',
'-Wstrict-prototypes',
'-Wtype-limits',
'-Wunused-function',
'-Wno-missing-field-initializers',
'-Wno-unused-command-line-argument',
'-Wno-unused-parameter',
'-Wno-unknown-pragmas',
language: 'c'
)
zlib = dependency('zlib')
threads = dependency('threads')
jansson = dependency('jansson', version: '>=2.10')
libcrypto = dependency('libcrypto', version: '>=1.0.2')
asciidoctor = find_program('asciidoctor', required: false)
jq = find_program('jq', required: false)
mans = []
licenses = ['COPYING']
subdir('include')
subdir('doc')
subdir('lib')
subdir('cmd')
subdir('tests')
install_data(licenses, install_dir: licensedir)
pkg = import('pkgconfig')
pkg.generate(
description: 'Library for managing JOSE objects',
version: meson.project_version(),
filebase: meson.project_name(),
name: 'José Library',
libraries_private: [ zlib, libcrypto ],
libraries: libjose_lib,
requires: jansson,
)
if asciidoctor.found()
foreach m : mans
custom_target(m.split('/')[-1], input: m + '.adoc', output: m.split('/')[-1],
command: [asciidoctor, '--attribute', 'reproducible', '--backend=manpage', '-D', meson.current_build_dir(), '@INPUT@'],
install_dir: join_paths(get_option('mandir'), 'man' + m.split('.')[-1]),
install: true
)
endforeach
elif get_option('docs').auto()
warning('Will not build man pages due to missing dependencies!')
endif
if not jq.found()
message('jq not found (unrequired but recommended)')
endif
|