diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-07 00:30:28 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-07 00:30:28 +0200 |
commit | dc1f537fb364833697406e7eb26f9a59d5d1d105 (patch) | |
tree | b23c7a0c9340afa60f4e65967a352d4ae6d2a420 /mesonbuild/backend/xcodebackend.py | |
parent | 59fdb1b9ff89e0d5d7073a05f59f161e286975a7 (diff) | |
download | meson-dc1f537fb364833697406e7eb26f9a59d5d1d105.zip meson-dc1f537fb364833697406e7eb26f9a59d5d1d105.tar.gz meson-dc1f537fb364833697406e7eb26f9a59d5d1d105.tar.bz2 |
Skip shared module test on VS because it fails for some reason nobody understands.
Diffstat (limited to 'mesonbuild/backend/xcodebackend.py')
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index b157741..8133e0f 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -22,6 +22,7 @@ from ..mesonlib import MesonException class XCodeBackend(backends.Backend): def __init__(self, build): super().__init__(build) + self.name = 'xcode' self.project_uid = self.environment.coredata.guid.replace('-', '')[:24] self.project_conflist = self.gen_id() self.indent = ' ' |