Skip to content
Snippets Groups Projects
Select Git revision
  • 793da542b67c471a82f183b15dbf1035e091ec26
  • clf default protected
  • kinetic
  • hydro
  • indigo
  • obsolete/master
  • groovy
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.1.35
  • 0.2.4
  • 0.2.3
  • 0.2.2
  • 0.2.1
  • 0.1.34
  • 0.1.33
  • 0.1.32
  • 0.1.31
  • 0.1.30
  • 0.1.29
  • 0.1.28
  • 0.1.27
  • 0.2.0
  • 0.1.26
  • 0.1.25
  • 0.1.24
27 results

CMakeLists.txt

Blame
  • .clang-format 1.78 KiB
    ---
    Language:      Cpp
    BasedOnStyle:  Google
    AccessModifierOffset: -3
    AlignAfterOpenBracket: Align
    AlignEscapedNewlinesLeft: true
    AlignTrailingComments: false
    AllowAllParametersOfDeclarationOnNextLine: false
    AllowShortFunctionsOnASingleLine: Inline
    AllowShortIfStatementsOnASingleLine: false
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakBeforeMultilineStrings: false
    AlwaysBreakTemplateDeclarations: true
    BinPackArguments: true
    BinPackParameters: true
    BraceWrapping:
      AfterClass: true
      AfterControlStatement: false
      AfterEnum: true
      AfterFunction: false
      AfterNamespace: false
      AfterStruct: true
      AfterUnion: true
      BeforeCatch: false
      BeforeElse: false
      IndentBraces: false
      SplitEmptyRecord: false
    BreakBeforeBinaryOperators: None
    BreakBeforeBraces: Custom
    BreakBeforeTernaryOperators: false
    BreakConstructorInitializersBeforeComma: true
    ColumnLimit: 120
    ConstructorInitializerAllOnOneLineOrOnePerLine: true
    ConstructorInitializerIndentWidth: 2
    ContinuationIndentWidth: 4
    Cpp11BracedListStyle: false
    DerivePointerBinding: false
    ExperimentalAutoDetectBinPacking: false
    IndentCaseLabels: true
    IndentFunctionDeclarationAfterType: false
    IndentWidth: 3
    MaxEmptyLinesToKeep: 1
    NamespaceIndentation: None
    ObjCSpaceBeforeProtocolList: true
    PenaltyBreakBeforeFirstCallParameter: 19
    PenaltyBreakComment: 60
    PenaltyBreakFirstLessLess: 1000
    PenaltyBreakString: 100
    PenaltyExcessCharacter: 1000
    PenaltyReturnTypeOnItsOwnLine: 70
    PointerBindsToType: true
    SortIncludes: false
    SpaceAfterCStyleCast: false
    SpaceAfterControlStatementKeyword: false
    SpaceBeforeAssignmentOperators: true
    SpaceBeforeParens: ControlStatements
    SpaceInEmptyParentheses: false
    SpacesBeforeTrailingComments: 2
    SpacesInAngles: false
    SpacesInCStyleCastParentheses: false
    SpacesInParentheses: false
    Standard: Auto
    TabWidth: 3
    UseTab: ForIndentation
    ...