diff host/vamp-simple-host.cpp @ 366:aede6e90a6b8

Merge (but taking everything from the more recent default)
author Chris Cannam
date Wed, 25 Jun 2014 12:38:37 +0100
parents 629faeec0229
children 4101e3f80aa0
line wrap: on
line diff
--- a/host/vamp-simple-host.cpp	Thu Jun 05 15:40:04 2014 +0100
+++ b/host/vamp-simple-host.cpp	Wed Jun 25 12:38:37 2014 +0100
@@ -114,6 +114,7 @@
         "  " << name << " --list\n\n"
         "    -- List the plugin libraries and Vamp plugins in the library search path\n"
         "       in a verbose human-readable format.\n\n"
+        "  " << name << " -L\n"
         "  " << name << " --list-full\n\n"
         "    -- List all data reported by all the Vamp plugins in the library search\n"
         "       path in a very verbose human-readable format.\n\n"
@@ -161,7 +162,7 @@
             enumeratePlugins(PluginInformation);
             return 0;
 
-        } else if (!strcmp(argv[1], "--list-full")) {
+        } else if (!strcmp(argv[1], "-L") || !strcmp(argv[1], "--list-full")) {
 
             enumeratePlugins(PluginInformationDetailed);
             return 0;