set MacOS min deployment version to 10.14

This commit is contained in:
Zer0xFF 2021-04-27 23:40:01 +01:00 committed by GitHub
parent 3ebd91243e
commit fb53e00613
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
# macOS deployment target needs to be set before 'project' to work
if(APPLE AND NOT TARGET_IOS)
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "Minimum OS X deployment version")
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14" CACHE STRING "Minimum OS X deployment version")
endif()
project(Play)