mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
CMake: Silently disable AAX builds on unsupported platforms
This commit is contained in:
parent
e86b886038
commit
e7581fa947
1 changed files with 5 additions and 1 deletions
|
|
@ -249,7 +249,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 LV2)
|
||||
list(APPEND result Unity VST VST3 LV2)
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
||||
list(APPEND result AAX)
|
||||
endif()
|
||||
|
||||
set(${out} ${result} PARENT_SCOPE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue