mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-18 19:55:00 -04:00
Remember to check for Linux VST Effects (#6751)
Remember to also check .so files and not only .dll
This commit is contained in:
@@ -82,7 +82,11 @@ void VstSubPluginFeatures::addPluginsFromDir( QStringList* filenames, QString pa
|
||||
}
|
||||
}
|
||||
QStringList dlls = QDir( ConfigManager::inst()->vstDir() + path ).
|
||||
entryList( QStringList() << "*.dll",
|
||||
entryList( QStringList() << "*.dll"
|
||||
#ifdef LMMS_BUILD_LINUX
|
||||
<< "*.so"
|
||||
#endif
|
||||
,
|
||||
QDir::Files, QDir::Name );
|
||||
for( int i = 0; i < dlls.size(); i++ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user