Browse Source

CMake: Disable AAX builds with MinGW

v7.0.9
reuk 2 years ago
parent
commit
14e729545d
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Build/CMake/JUCEModuleSupport.cmake

+ 1
- 1
extras/Build/CMake/JUCEModuleSupport.cmake View File

@@ -257,7 +257,7 @@ function(_juce_get_platform_plugin_kinds out)
endif()
endif()

if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows")
if((CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows") AND NOT (CMAKE_CXX_COMPILER_ID STREQUAL "GNU"))
list(APPEND result AAX)
endif()



Loading…
Cancel
Save