diff options
author | Roman Shpuntov <roman.shpuntov@gmail.com> | 2019-06-12 18:08:29 +0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-06-13 21:31:03 +0300 |
commit | 3b17344b116d13b99b6436f3b9b09ca294079625 (patch) | |
tree | 89c36d1946e47e700ce6b43a221f4e38b8aa2ea3 /mesonbuild/build.py | |
parent | 4b73f5022262a2c8b2c1a4d234ea64d4714b343d (diff) | |
download | meson-3b17344b116d13b99b6436f3b9b09ca294079625.zip meson-3b17344b116d13b99b6436f3b9b09ca294079625.tar.gz meson-3b17344b116d13b99b6436f3b9b09ca294079625.tar.bz2 |
tvOS: added support AppleTVOS
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 7856fbd..9d40944 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1783,7 +1783,7 @@ class SharedLibrary(BuildTarget): # We replicate what Autotools does here and take the first # number of the version by default. self.soversion = self.ltversion.split('.')[0] - # macOS and iOS dylib compatibility_version and current_version + # macOS, iOS and tvOS dylib compatibility_version and current_version if 'darwin_versions' in kwargs: self.darwin_versions = self._validate_darwin_versions(kwargs['darwin_versions']) elif self.soversion: |