diff checker.cpp @ 3:3bae396cf8e0

Start to organise as a Qt project, with a main (command-line) executable
author Chris Cannam
date Wed, 13 Apr 2016 09:12:04 +0100
parents
children 6f891a9c6434
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/checker.cpp	Wed Apr 13 09:12:04 2016 +0100
@@ -0,0 +1,12 @@
+
+#include "plugincandidates.h"
+
+int main(int argc, char **argv)
+{
+    //!!! just a test
+    PluginCandidates candidates("./helper");
+    candidates.scan("vamp",
+                    { "/usr/lib/vamp", "/usr/local/lib/vamp" },
+                    "vampGetPluginDescriptor");
+}
+