summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-09-14 13:44:27 +0200
committerMichael Stahl <mstahl@redhat.com>2016-09-14 17:04:27 +0200
commit999499ab25df8b293c009ddfa2e0bedbe5e6ce3d (patch)
treefec9e173f6038aea000fd8881ce8b431b3cfad76 /bin
parent15f92676f74d58b0af8578d6c45d0faa3de19164 (diff)
gbuild-to-ide: MSVC 2012 no longer supported, replace with 2015
Of course not tested in any way but with any luck the project file format hasn't changed and it will "just work". Change-Id: I81c5043259feeabd69ef31ea7ef160901ac7ebdc
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ide4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 049292016ffb..069b7c5fa0ac 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -833,7 +833,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator):
}
def retrieve_toolset(self, ide):
- ide_toolset_map = {'vs2012': 'v110', 'vs2013': 'v120'}
+ ide_toolset_map = {'vs2013': 'v120', 'vs2015': 'v140'}
return ide_toolset_map[ide]
def module_make_command(self, targets):
@@ -1705,8 +1705,8 @@ if __name__ == '__main__':
'eclipsecdt': EclipseCDTIntegrationGenerator,
'kdevelop': KdevelopIntegrationGenerator,
'xcode': XcodeIntegrationGenerator,
- 'vs2012': VisualStudioIntegrationGenerator,
'vs2013': VisualStudioIntegrationGenerator,
+ 'vs2015': VisualStudioIntegrationGenerator,
'vim': VimIntegrationGenerator,
'debug': DebugIntegrationGenerator,
'qtcreator': QtCreatorIntegrationGenerator,