https://github.com/Kitware/CMake
Revision 0f76839bc78453f49da7b770ae65090e48fdd63a authored by Kyle Edwards on 31 March 2020, 19:05:24 UTC, committed by Kyle Edwards on 01 April 2020, 15:39:28 UTC
Encourage people to use cmake(1) --install instead.
1 parent 7c6a025
Raw File
Tip revision: 0f76839bc78453f49da7b770ae65090e48fdd63a authored by Kyle Edwards on 31 March 2020, 19:05:24 UTC
Help: Discourage direct use of cmake_install.cmake
Tip revision: 0f76839
.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
IncludeBlocks: Regroup
IncludeCategories:
  - Regex:           '^[<"]cmConfigure\.h'
    Priority:        -1
  - Regex:           '^<queue>'
    Priority:        1
  - Regex:           '^(<|")cm(ext)?/'
    Priority:        2
  - Regex:           '^(<|")windows\.h'
    Priority:        3
  - Regex:           '^<sys/'
    Priority:        5
  - Regex:           '^(<|")Qt?[A-Z]'
    Priority:        6
  - Regex:           '^(<|")cmsys/'
    Priority:        7
  - Regex:           '^(<|")cm_'
    Priority:        8
  - Regex:           '^(<|")cm[A-Z][^.]+\.h'
    Priority:        9
  - Regex:           '^<[^.]+\.h'
    Priority:        4
  - Regex:           '^<'
    Priority:        1
  - Regex:           '.*'
    Priority:        10
...
back to top