[server,mac] disable shadow if on mac

the mac implementation no longer compiles.
This commit is contained in:
akallabeth
2025-04-29 12:26:18 +02:00
parent bb67da5411
commit 649fa67894

View File

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