Make option to disable VST3 support consistent

Previously, the option was called "--vst3", yet disabled building
support for VST3 plugins (as described in the help string).

Signed-off-by: Nils Philippsen <nils@tiptoe.de>
This commit is contained in:
Nils Philippsen 2023-11-17 22:23:58 +01:00
parent b76c3b11d9
commit a33514e270
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ def options(opt):
opt.add_option('--lv2dir', type='string', help="install destination for builtin LV2 bundles [Default: LIBDIR/lv2]")
opt.add_option('--no-lxvst', action='store_true', default=False, dest='no_lxvst',
help='Compile without support for linuxVST plugins')
opt.add_option('--vst3', action='store_true', default=False, dest='no_vst3',
opt.add_option('--no-vst3', action='store_true', default=False, dest='no_vst3',
help='Compile without support for VST3 plugins')
opt.add_option('--no-lrdf', action='store_true', dest='no_lrdf',
help='Compile without support for LRDF LADSPA data even if present')