Makefile.in | 2 +- bin/gbuild-to-ide | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit a0289052fd4f0f901ffd3698cee8669244701e5e Author: Mike Kaganski <[email protected]> AuthorDate: Fri Oct 8 08:46:32 2021 +0200 Commit: Mike Kaganski <[email protected]> CommitDate: Fri Oct 8 10:03:06 2021 +0200 Drop vs2017-ide-integration; add vs2022-ide-integration VS2017 is not supported since 24973523ba59087185d434396fd614e73d72107f. Change-Id: I1a2af1eb8c9216eaed87d5454def2176728f719b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123161 Tested-by: Mike Kaganski <[email protected]> Reviewed-by: Mike Kaganski <[email protected]> diff --git a/Makefile.in b/Makefile.in index 4fdfe067ebf5..a71a203d3558 100644 --- a/Makefile.in +++ b/Makefile.in @@ -483,8 +483,8 @@ endef $(foreach ide,\ codelite \ - vs2017 \ vs2019 \ + vs2022 \ kdevelop \ vim \ qtcreator \ diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index bdd83c26dfba..f349a3058aab 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -937,7 +937,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator): } def retrieve_toolset(self, ide): - ide_toolset_map = {'vs2017': 'v141', 'vs2019': 'v142'} + ide_toolset_map = {'vs2019': 'v142', 'vs2022': 'v143'} return ide_toolset_map[ide] def module_make_command(self, targets): @@ -1870,8 +1870,8 @@ if __name__ == '__main__': 'eclipsecdt': EclipseCDTIntegrationGenerator, 'kdevelop': KdevelopIntegrationGenerator, 'xcode': XcodeIntegrationGenerator, - 'vs2017': VisualStudioIntegrationGenerator, 'vs2019': VisualStudioIntegrationGenerator, + 'vs2022': VisualStudioIntegrationGenerator, 'vim': VimIntegrationGenerator, 'debug': DebugIntegrationGenerator, 'qtcreator': QtCreatorIntegrationGenerator,
