Mention the CLAP feature in the init message

This commit is contained in:
Robbert van der Helm
2022-08-24 14:36:17 +02:00
parent 6df0741195
commit 6be5fbbcf4
+5 -1
View File
@@ -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 << " <none>" << std::endl;
#endif
init_msg << std::endl;