
subrepo: subdir: "deps/clap-juce-extensions/clap-libs/clap" merged: "3189bdfaf" upstream: origin: "https://github.com/free-audio/clap" branch: "main" commit: "3189bdfaf" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
10 lines
233 B
C
10 lines
233 B
C
#include <clap/clap.h>
|
|
|
|
// The purpose of this file is to check that all headers compile
|
|
int main(int argc, char **argv) {
|
|
(void)argc;
|
|
(void)argv;
|
|
clap_version_t m = CLAP_VERSION;
|
|
return !clap_version_is_compatible(m);
|
|
}
|