https://github.com/Kitware/CMake
Revision d44f81c2173d56cba662bc414f7cd2dc030b74fe authored by Brad King on 08 January 2019, 18:45:08 UTC, committed by Brad King on 08 January 2019, 19:10:16 UTC
Filter instances reported by the VS Installer to consider only VS 2017
instances for the "Visual Studio 15 2017" generator.

Fixes: #18721
1 parent 9bbfbd5
Raw File
Tip revision: d44f81c2173d56cba662bc414f7cd2dc030b74fe authored by Brad King on 08 January 2019, 18:45:08 UTC
VS: Exclude VS 2019 instances when using VS 2017 generator
Tip revision: d44f81c
.clang-format
---
# This configuration requires clang-format version 6.0 exactly.
BasedOnStyle: Mozilla
AlignOperands: false
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
  AfterClass:      true
  AfterEnum:       true
  AfterFunction:   true
  AfterStruct:     true
  AfterUnion:      true
BreakBeforeBraces: Custom
ColumnLimit: 79
IndentPPDirectives: AfterHash
SortUsingDeclarations: false
SpaceAfterTemplateKeyword: true
...
back to top