From 649fa678945f40ca53f3577933ec36ddf9283a66 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 29 Apr 2025 12:26:18 +0200 Subject: [PATCH] [server,mac] disable shadow if on mac the mac implementation no longer compiles. --- server/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt index 04a72cd3a..189841e20 100644 --- a/server/CMakeLists.txt +++ b/server/CMakeLists.txt @@ -22,7 +22,11 @@ option(WITH_PLATFORM_SERVER "Compile with platform server" ON) add_subdirectory(common) if(WITH_SHADOW) - add_subdirectory(shadow) + if(APPLE) + message(WARNING "Mac shadow server implementation no longer compiles") + else() + add_subdirectory(shadow) + endif() endif() if(WITH_PROXY) add_subdirectory(proxy)