This commit is contained in:
2026-06-03 14:52:32 +08:00
parent 2181669825
commit a2af4b5bf6
7 changed files with 56 additions and 3 deletions
+6 -1
View File
@@ -65,7 +65,12 @@ TEST(PluginIntegration, ChromaKeyerCreateAndRender)
}
}
olive::plugin::loadPlugins(QString::fromUtf8(path));
QString raw = QString::fromUtf8(path);
const QChar separator = QDir::listSeparator();
const QStringList paths = raw.split(separator, Qt::SkipEmptyParts);
for (const QString &p : paths) {
olive::plugin::loadPlugins(p);
}
auto *cache = OFX::Host::PluginCache::getPluginCache();
OFX::Host::Plugin *found = nullptr;