forked from robbert-vdh/yabridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
39 lines (35 loc) · 1.12 KB
/
meson_options.txt
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
option(
'bitbridge',
type : 'boolean',
value : false,
description : 'Build a 32-bit host application for hosting 32-bit plugins. See the readme for full instructions on how to use this.'
)
option(
'clap',
type : 'boolean',
value : true,
description : 'Whether to build the CLAP version of yabridge.'
)
option(
'system-asio',
type : 'boolean',
value : false,
description : '''If set to true, then <asio.hpp> from the standard include
directories will be used in place of a pkgconfig definition,
CMake dependency, or subproject wrap. The asio library does
not come with any build definitions Meson can use to detect
its installed version and location, so this behavior is
behind an option as it's only relevant for distro packaging.'''
)
option(
'vst3',
type : 'boolean',
value : true,
description : 'Whether to build the VST3 version of yabridge.'
)
option(
'winedbg',
type : 'boolean',
value : false,
description : 'Whether to run the Wine plugin host with GDB attached. Might not always be reliable.'
)