1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

MinGW: Disable VST3 builds under MinGW

This commit is contained in:
reuk 2020-05-06 19:08:16 +01:00
parent 092bc44413
commit c9849e6710
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

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)