clap-wrapper 0.1.0

An easy way to use clap-wrapper in your audio plugins!
Documentation
1
2
3
4
5
6
7
8
9
#include <clap/all.h>

// The purpose of this file is to check that all headers compile
int main(int argc, char **argv) {
   (void)argc;
   (void)argv;
   const clap_version_t m = CLAP_VERSION;
   return !clap_version_is_compatible(m);
}