higher iOS and macOS compatibility version

This commit is contained in:
Chris Li 2020-03-19 21:56:03 -04:00
parent ce329b6a79
commit ddc73181db
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class iOSPlatformInfo(PlatformInfo):
build = 'iOS'
static = True
compatible_hosts = ['Darwin']
min_iphoneos_version = '9.0'
min_iphoneos_version = '11.0'
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@ -49,7 +49,7 @@ class iOSPlatformInfo(PlatformInfo):
def get_env(self):
env = super().get_env()
env['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
env['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
return env
def set_comp_flags(self, env):