Skip to content

Commit

Permalink
allow building of VST3 plugin on Clang + MinGW toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Birch-san committed Jan 10, 2022
1 parent 46ea879 commit 7182e6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#define JucePlugin_Build_RTAS 0
#endif

#if ! (defined (_MSC_VER) || defined (__APPLE_CPP__) || defined (__APPLE_CC__) || defined (LINUX) || defined (__linux__))
#if ! (defined (_MSC_VER) || defined (__APPLE_CPP__) || defined (__APPLE_CC__) || defined (LINUX) || defined (__linux__) || (defined(__clang__) && (defined(__MINGW32__) || defined(__MINGW64__))))
#undef JucePlugin_Build_VST3
#define JucePlugin_Build_VST3 0
#endif
Expand Down

0 comments on commit 7182e6e

Please sign in to comment.