build script: specify deployment target explicitly

This commit is contained in:
alexey.lysiuk 2020-06-27 14:44:26 +03:00
parent eb55f3e00f
commit ddc445f408

View file

@ -36,7 +36,7 @@ class Target:
self.name = None
self.url = None
self.src_root = ''
self.cmake_options = {}
self.cmake_options = {'CMAKE_OSX_DEPLOYMENT_TARGET': '10.9'}
self.post_build = None
def _assign_common_linker_flags(self, builder: 'Builder'):