From 6be5fbbcf448fd25eb939d1d4e877686bab9acb2 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 24 Aug 2022 14:36:17 +0200 Subject: [PATCH] Mention the CLAP feature in the init message --- src/plugin/bridges/common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugin/bridges/common.h b/src/plugin/bridges/common.h index 9c21a864..06fe1691 100644 --- a/src/plugin/bridges/common.h +++ b/src/plugin/bridges/common.h @@ -339,13 +339,17 @@ class PluginBridge { #ifdef WITH_BITBRIDGE init_msg << "- bitbridge support" << std::endl; #endif +#ifdef WITH_CLAP + init_msg << "- CLAP support" << std::endl; +#endif #ifdef WITH_WINEDBG init_msg << "- winedbg" << std::endl; #endif #ifdef WITH_VST3 init_msg << "- VST3 support" << std::endl; #endif -#if !(defined(WITH_BITBRIDGE) || defined(WITH_WINEDBG) || defined(WITH_VST3)) +#if !(defined(WITH_BITBRIDGE) || defined(WITH_CLAP) || \ + defined(WITH_WINEDBG) || defined(WITH_VST3)) init_msg << " " << std::endl; #endif init_msg << std::endl;