From 5bad3b2db7310f1882984b5dd32281b036fc3247 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Tue, 10 May 2022 07:50:11 +0200 Subject: [PATCH] macos related fixes --- resources/docs/Documentation.md | 2 +- src/librssguard/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/docs/Documentation.md b/resources/docs/Documentation.md index 85e39b60e..ce9cfd698 100644 --- a/resources/docs/Documentation.md +++ b/resources/docs/Documentation.md @@ -48,7 +48,7 @@ RSS Guard is a cross-platform application, and at this point it is known to work * Windows 7+ * GNU/Linux (including PinePhone and other Linux-based phone operating systems) * BSD (FreeBSD, OpenBSD, NetBSD, etc.) -* macOS 10.10+ +* macOS 10.13+ * OS/2 (ArcaOS, eComStation) ## Major Features diff --git a/src/librssguard/CMakeLists.txt b/src/librssguard/CMakeLists.txt index b95c3bbc0..d6f57f79b 100644 --- a/src/librssguard/CMakeLists.txt +++ b/src/librssguard/CMakeLists.txt @@ -645,8 +645,8 @@ if(UNIX AND NOT APPLE AND NOT ANDROID) endif() if(APPLE) - target_compile_options(rssguard PUBLIC -mmacosx-version-min=10.8) - target_link_options(rssguard PUBLIC -mmacosx-version-min=10.8) + target_compile_options(rssguard PUBLIC -mmacosx-version-min=10.13) + target_link_options(rssguard PUBLIC -mmacosx-version-min=10.13) target_link_libraries(rssguard PUBLIC "-framework AppKit" )