From cf72c135790cc9fae01f59aa37e54c2beefb8548 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 1 Dec 2020 23:55:40 +0100 Subject: [PATCH] Add a define for VST3 support --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 9471ffa0..118d3d69 100644 --- a/meson.build +++ b/meson.build @@ -49,6 +49,10 @@ if with_winedbg compiler_options += '-DWITH_WINEDBG' endif +if with_vst3 + compiler_options += '-DWITH_VST3' +endif + # Generate header files for configuration variables such as the current git tag # and the name of the host binary subdir('src/common/config')