From e3cf5928c4ac0190c6fd117f63c6f6fd470828bc Mon Sep 17 00:00:00 2001 From: akallabeth Date: Thu, 17 Feb 2022 09:12:45 +0100 Subject: [PATCH] Make mac native client build configuratble --- client/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 65fc72588..e8bb9c06a 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -43,7 +43,10 @@ if(FREERDP_VENDOR AND WITH_CLIENT) add_subdirectory(iOS) endif() else() - add_subdirectory(Mac) + option(WITH_CLIENT_MAC "Build native mac client" ON) + if (WITH_CLIENT_MAC) + add_subdirectory(Mac) + endif() endif() endif()