mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 23:17:46 +01:00
debugging info for solv
git-svn-id: svn://localhost/ardour2/trunk@1204 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
47d076418d
commit
ed59a43ced
1 changed files with 9 additions and 0 deletions
|
|
@ -340,6 +340,8 @@ PluginManager::add_vst_directory (string path)
|
|||
static bool vst_filter (const string& str, void *arg)
|
||||
{
|
||||
/* Not a dotfile, has a prefix before a period, suffix is "dll" */
|
||||
|
||||
cerr << "VST filter: looking at " << str << endl;
|
||||
|
||||
return str[0] != '.' && (str.length() > 4 && str.find (".dll") == (str.length() - 4));
|
||||
}
|
||||
|
|
@ -356,8 +358,15 @@ PluginManager::vst_discover_from_path (string path)
|
|||
|
||||
plugin_objects = scanner (vst_path, vst_filter, 0, true, true);
|
||||
|
||||
if (plugin_objects) {
|
||||
cerr << "Discovered " << plugin_objects.size() << " possible plugins\n";
|
||||
} else {
|
||||
cerr << "No plugins discovered at all\n";
|
||||
}
|
||||
|
||||
if (plugin_objects) {
|
||||
for (x = plugin_objects->begin(); x != plugin_objects->end (); ++x) {
|
||||
cerr << "checking out " << **x << endl;
|
||||
vst_discover (**x);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue