Browse Source

Fix mingw LV2 build

Signed-off-by: falkTX <falktx@falktx.com>
v6.1.6-distrho
falkTX 1 year ago
parent
commit
7c23c02e47
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp

+ 6
- 0
modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp View File

@@ -12,6 +12,12 @@

#if JucePlugin_Build_LV2

#if JUCE_WINDOWS
/* The "juce_IncludeSystemHeaders.h" header will unset _WIN32_WINNT which breaks mingw
* So we include system headers early to prevent build issues. */
#include <condition_variable>
#endif

#include "../utility/juce_IncludeSystemHeaders.h"

/** Plugin requires processing with a fixed/constant block size */


Loading…
Cancel
Save