-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
129 lines (117 loc) · 2.73 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
# Copyright 2022-2023 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
project(
'lv2kit',
['c'],
default_options: [
'b_ndebug=if-release',
'buildtype=release',
'c_std=c99',
'cpp_std=c++17',
],
license: 'ISC',
meson_version: '>= 0.56.0',
version: '0.0.1',
)
lv2kit_src_root = meson.current_source_dir()
versioned_name = 'lv2kit-' + meson.project_version().split('.')[0]
#######################
# Compilers and Flags #
#######################
# Required tools
pkg = import('pkgconfig')
cc = meson.get_compiler('c')
# Optional C++ support
if add_languages(['cpp'], native: false, required: get_option('cxx'))
cpp = meson.get_compiler('cpp')
endif
##############################
# Dependencies / Subprojects #
##############################
zix_dep = dependency(
'zix-0',
fallback: ['zix', 'zix_dep'],
include_type: 'system',
version: '>= 0.6.2',
)
serd_dep = dependency(
'serd-0',
fallback: ['serd', 'serd_dep'],
include_type: 'system',
version: '>= 0.32.4',
)
sord_dep = dependency(
'sord-0',
fallback: ['sord', 'sord_dep'],
include_type: 'system',
version: '>= 0.16.19',
)
lv2_dep = dependency(
'lv2',
fallback: ['lv2', 'lv2_dep'],
include_type: 'system',
version: '>= 1.18.11',
)
sratom_dep = dependency(
'sratom-0',
fallback: ['sratom', 'sratom_dep'],
include_type: 'system',
version: '>= 0.6.19',
)
lilv_dep = dependency(
'lilv-0',
fallback: ['lilv', 'lilv_dep'],
include_type: 'system',
version: '>= 0.24.27',
)
suil_dep = dependency(
'suil-0',
fallback: ['suil', 'suil_dep'],
include_type: 'system',
version: '>= 0.10.23',
)
###########
# Package #
###########
# Generate pkg-config file for external dependants
pkg.generate(
description: 'LV2 host libraries',
filebase: versioned_name,
name: 'LV2Kit',
requires: ['zix-0', 'serd-0', 'sord-0', 'lv2', 'sratom-0', 'lilv-0', 'suil-0'],
subdirs: [versioned_name],
version: meson.project_version(),
)
# Declare dependency for internal meson dependants
lv2kit_dep = declare_dependency(
dependencies: [
zix_dep,
serd_dep,
sord_dep,
lv2_dep,
sratom_dep,
lilv_dep,
suil_dep,
],
)
# Print configuration summary
if not meson.is_subproject()
summary(
{
'Tests': not get_option('tests').disabled(),
'Tools': not get_option('tools').disabled(),
},
bool_yn: true,
section: 'Components',
)
summary(
{
'Install prefix': get_option('prefix'),
'Headers': get_option('prefix') / get_option('includedir'),
'Libraries': get_option('prefix') / get_option('libdir'),
'Executables': get_option('prefix') / get_option('bindir'),
'Man pages': get_option('prefix') / get_option('mandir'),
},
section: 'Directories',
)
endif