https://github.com/Kitware/CMake
Revision c684db4ea8d4763a7a70582d24c4bf5ac14cfea4 authored by Alan W. Irwin on 21 October 2019, 14:21:16 UTC, committed by Brad King on 21 October 2019, 14:25:41 UTC
Fix the `COMPILE_LANGUAGE/CXX_COMPILER_ID` variant of the example to
have the same meaning as the `COMPILE_LANG_AND_ID` variant.  The
inconsistency was introduced by commit 808b818063 (Genex: CompileLang
and CompileLangAndId now match against a list of ids, 2019-05-30,
v3.15.0-rc1~11^2~1).

Fixes: #19862
1 parent 6fb747a
Raw File
Tip revision: c684db4ea8d4763a7a70582d24c4bf5ac14cfea4 authored by Alan W. Irwin on 21 October 2019, 14:21:16 UTC
Help: Fix COMPILE_LANG_AND_ID genex example
Tip revision: c684db4
.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