From 598dde025c7ccdbb08267e63ab9aa6bb19735d50 Mon Sep 17 00:00:00 2001 From: Albert Vaca Cintora Date: Sun, 25 Jun 2023 17:11:20 +0200 Subject: [PATCH] Disable sendnotifications plugin on Mac (won't compile) --- plugins/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 1e304b88e..de05e9c12 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -45,7 +45,7 @@ if(NOT SAILFISHOS) endif() endif() - if(NOT WIN32) + if(NOT WIN32 AND NOT APPLE) add_subdirectory(sendnotifications) endif()