Browse Source

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
rdb 2 years ago
parent
commit
75abee73e2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      dtool/Package.cmake

+ 3 - 1
dtool/Package.cmake

@@ -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,