Files
yabridge/meson_options.txt
T
Robbert van der Helm c6b58c1a64 Don't use CMake for the VST3 SDK
This can't work yet.
2020-12-07 18:28:16 +01:00

35 lines
1.1 KiB
Meson

option(
'with-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(
'with-static-boost',
type : 'boolean',
value : false,
description : 'Enable static linking for Boost. Needed when distributing the binaries to other systems.'
)
# NOTE: Right now this does not actually require CMake. Because of a limitation
# in Meson we can't use the original build definitions just yet. For the
# time being we have just written our own meson.build to replace the SDK's
# CMake project. Once Meson allows mixing native and cross compiled CMake
# subprojects the commit that added this notice can be reverted.
#
# https://github.com/mesonbuild/meson/issues/8043
option(
'with-vst3',
type : 'boolean',
value : true,
description : 'Whether to build the VST3 version of yabridge. This requires CMake to be installed.'
)
option(
'with-winedbg',
type : 'boolean',
value : false,
description : 'Whether to run the Wine VST host with GDB attached. Might not always be reliable.'
)