clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 3d2897302b5d9a57b31034e0b11d2fce208f8deb
parent 9a4afed4d3645ea4ef69b530198a44d077cbc129
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Fri, 11 Jun 2021 16:03:28 +0200

Host: bettor library loading

Diffstat:
Mexamples/host/plugin-host.cc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/examples/host/plugin-host.cc b/examples/host/plugin-host.cc @@ -110,6 +110,7 @@ bool PluginHost::load(const QString &path, int pluginIndex) { unload(); library_.setFileName(path); + library_.setLoadHints(QLibrary::ResolveAllSymbolsHint | QLibrary::DeepBindHint); if (!library_.load()) { QString err = library_.errorString(); qWarning() << "failed to load " << path << ": " << err;