Bump min OSX version to 10.10

This commit is contained in:
Robin Dunn
2020-07-07 11:12:22 -07:00
parent 5af1e297ba
commit ab674002af

View File

@@ -297,11 +297,10 @@ def main(wxDir, args):
else:
wxpy_configure_opts.append("--with-sdl")
# Set the minimum supported OSX version, and find the oldest SDK
# version present on the build machine.
# TODO: should there be a command line option to set the SDK?
# Set the minimum supported OSX version.
# TODO: Add a CLI option to set this.
if sys.platform.startswith("darwin"):
wxpy_configure_opts.append("--with-macosx-version-min=10.9")
wxpy_configure_opts.append("--with-macosx-version-min=10.10")
# for xcodePath in getXcodePaths():
# sdks = [ xcodePath+"/SDKs/MacOSX10.{}.sdk".format(n)
# for n in range(9, 15) ]