From ba3e16ee9bb0316a35e61f800d33499031e4bb23 Mon Sep 17 00:00:00 2001 From: Christoph Hart <> Date: Fri, 24 Jan 2025 16:05:13 +0100 Subject: [PATCH] - remove Sonoma warning --- hi_backend/backend/CompileExporter.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/hi_backend/backend/CompileExporter.cpp b/hi_backend/backend/CompileExporter.cpp index 6e774af9f..e9af42cc0 100644 --- a/hi_backend/backend/CompileExporter.cpp +++ b/hi_backend/backend/CompileExporter.cpp @@ -1951,17 +1951,6 @@ void CompileExporter::ProjectTemplateHelpers::handleCompilerInfo(CompileExporter auto copyPlugin = !isUsingCIMode(); -#if JUCE_MAC - auto macOSVersion = SystemStats::getOperatingSystemType(); - - // deactivate copy step on Sonoma (or later) to avoid the cycle dependencies error... - if(macOSVersion >= SystemStats::MacOS_14) - { - PresetHandler::showMessageWindow("Copystep diabled", "macOS Sonoma (or later) will cause a compile error if the copy step is enabled, so you have to copy the plugin files into the plugin folders manually after compilation"); - copyPlugin = false; - } -#endif - REPLACE_WILDCARD_WITH_STRING("%COPY_PLUGIN%", copyPlugin ? "1" : "0"); #if JUCE_MAC