diff options
author | Nicolas Schneider <nioncode+git@gmail.com> | 2016-05-26 00:03:02 +0200 |
---|---|---|
committer | Nicolas Schneider <nioncode+git@gmail.com> | 2016-05-30 21:49:35 +0200 |
commit | 3bedca025717aec3266450feb1d472d4169b68cd (patch) | |
tree | ef2adb76cdee027d7d00f0b645c427b8fe10b56a /mesonbuild/mesonmain.py | |
parent | 0b81f5b0ade5876844c9059645ff031146b3b052 (diff) | |
download | meson-3bedca025717aec3266450feb1d472d4169b68cd.zip meson-3bedca025717aec3266450feb1d472d4169b68cd.tar.gz meson-3bedca025717aec3266450feb1d472d4169b68cd.tar.bz2 |
add vs2015 backend
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 4f8314c..f840543 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -23,7 +23,6 @@ import platform from . import mlog, coredata from .mesonlib import MesonException -backendlist = ['ninja', 'vs2010', 'xcode'] parser = argparse.ArgumentParser() @@ -139,6 +138,9 @@ itself as required.''' elif self.options.backend == 'vs2010': from .backend import vs2010backend g = vs2010backend.Vs2010Backend(b) + elif self.options.backend == 'vs2015': + from .backend import vs2010backend + g = vs2010backend.Vs2015Backend(b) elif self.options.backend == 'xcode': from .backend import xcodebackend g = xcodebackend.XCodeBackend(b) |