cmake: Require MacOSX 10.15 or newer

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2022-09-03 20:06:33 +02:00
parent f40c7a9906
commit 7f1ae7f9f1

View file

@ -24,6 +24,13 @@ else()
set(LOGPREFIX "") set(LOGPREFIX "")
endif() endif()
# MacOSX: Require at least MacOSX 10.15 for C++17 support.
if(APPLE)
if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.15)
CacheSet(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
endif()
endif()
################################################################################ ################################################################################
# Modules # Modules
################################################################################ ################################################################################