Browse Source

MinGW: Disable VST3 builds under MinGW

tags/2021-05-28
reuk 5 years ago
parent
commit
c9849e6710
No known key found for this signature in database GPG Key ID: 9ADCD339CFC98A11
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      extras/Build/CMake/JUCEUtils.cmake

+ 5
- 1
extras/Build/CMake/JUCEUtils.cmake View File

@@ -304,7 +304,11 @@ function(_juce_get_platform_plugin_kinds out)
endif()

if(NOT CMAKE_SYSTEM_NAME STREQUAL "iOS" AND NOT CMAKE_SYSTEM_NAME STREQUAL "Android")
list(APPEND result AAX Unity VST VST3)
list(APPEND result AAX Unity VST)

if(NOT MINGW AND NOT MSYS)
list(APPEND result VST3)
endif()
endif()

set(${out} ${result} PARENT_SCOPE)


Loading…
Cancel
Save