Skip to content
Snippets Groups Projects
Select Git revision
  • 52860a57867b120b39ee7502231f4a1d885c8cfe
  • develop default protected
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • feature/escobar-smoother
  • feature/hypoelasticity-clean
  • feature/hypoelasticity
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

CMakeLists.txt

Blame
  • .clang-format 1.68 KiB
    ---
    BasedOnStyle: Mozilla
    AccessModifierOffset: '-1'
    AlignAfterOpenBracket: Align
    AlignConsecutiveAssignments: 'true'
    AlignConsecutiveDeclarations: 'false'
    AlignEscapedNewlines: Left
    AlignOperands: 'true'
    AlignTrailingComments: 'true'
    AllowAllParametersOfDeclarationOnNextLine: 'false'
    AllowShortBlocksOnASingleLine: 'false'
    AllowShortCaseLabelsOnASingleLine: 'false'
    AllowShortFunctionsOnASingleLine: Empty
    AllowShortIfStatementsOnASingleLine: 'false'
    AllowShortLoopsOnASingleLine: 'false'
    AlwaysBreakAfterDefinitionReturnType: TopLevel
    AlwaysBreakAfterReturnType: AllDefinitions
    AlwaysBreakBeforeMultilineStrings: 'false'
    AlwaysBreakTemplateDeclarations: 'Yes'
    BinPackArguments: 'true'
    BinPackParameters: 'false'
    BreakBeforeBinaryOperators: None
    BreakBeforeBraces: Custom
    BraceWrapping:
    #  AfterCaseLabel: false
      AfterClass: true
      AfterControlStatement: false
      AfterEnum: true
      AfterStruct: true
      AfterFunction: true
      AfterNamespace: true
      AfterUnion: true
      AfterExternBlock: true
      BeforeCatch: true
      BeforeElse: false
      IndentBraces: false
      SplitEmptyFunction: false
    
    BreakConstructorInitializers: BeforeColon
    ColumnLimit: '120'
    CompactNamespaces: 'true'
    ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
    Cpp11BracedListStyle: 'true'
    FixNamespaceComments: 'true'
    IndentCaseLabels: false
    KeepEmptyLinesAtTheStartOfBlocks: 'false'
    Language: Cpp
    MaxEmptyLinesToKeep: '1'
    NamespaceIndentation: None
    PenaltyBreakBeforeFirstCallParameter: 10000
    PointerAlignment: Left
    ReflowComments: 'true'
    SortUsingDeclarations: 'true'
    SpaceAfterTemplateKeyword: 'true'
    SpaceBeforeAssignmentOperators: 'true'
    SpaceBeforeRangeBasedForLoopColon: 'true'
    SpacesBeforeTrailingComments: '3'
    Standard: Auto
    UseTab: Never
    
    ...