Mercurial > hg > vamp-plugin-load-checker
annotate 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 |
rev | line source |
---|---|
Chris@3 | 1 |
Chris@3 | 2 #include "plugincandidates.h" |
Chris@3 | 3 |
Chris@3 | 4 int main(int argc, char **argv) |
Chris@3 | 5 { |
Chris@3 | 6 //!!! just a test |
Chris@3 | 7 PluginCandidates candidates("./helper"); |
Chris@3 | 8 candidates.scan("vamp", |
Chris@3 | 9 { "/usr/lib/vamp", "/usr/local/lib/vamp" }, |
Chris@3 | 10 "vampGetPluginDescriptor"); |
Chris@3 | 11 } |
Chris@3 | 12 |