CMake: Disable FMOD Ex on macOS

There's no version of FMOD Ex that isn't linked against libstdc++.6.dylib, which is no longer available in the SDKs
This commit is contained in:
rdb 2023-05-08 19:59:50 +02:00
parent 600fa45d6e
commit 75abee73e2

View File

@ -518,7 +518,9 @@ package_status(OPUS "Opus")
# #
# FMOD Ex # FMOD Ex
find_package(FMODEx QUIET) if(NOT APPLE)
find_package(FMODEx QUIET)
endif()
package_option(FMODEx package_option(FMODEx
"This enables support for the FMOD Ex sound library, "This enables support for the FMOD Ex sound library,