diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d4fe3a0..280a0c95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,13 @@ else() set(LOGPREFIX "") 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 ################################################################################