https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 69ef161b7fb4c5d43c924a8121359507718e09d6 authored by wenqing on 18 October 2021, 08:46:47 UTC
Merge branch 'partmesh_TaylorHood' into 'master'
Tip revision: 69ef161
config-cpp-dependencies.txt
# Configuration file for cpp-dependencies
# This is the example file that has all the default values listed.

# Version that was current when this configuration file was written
# Used to prevent a newer version with possibly incompatible generation from overwriting
# cmakefiles automatically.
versionUsed: 2

# Company name to use in generated CMakeLists' copyright statement.
companyName: OpenGeoSys Community (www.opengeosys.org)

# License text to include directly after the copyright statement.
licenseString: """
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

# Tag used in generated CMakeLists. Don't change unless you also update your CMakeLists.
regenTag: GENERATED BY CPP-DEPENDENCIES


# The next three items describe colors that will appear in the output graphs. Ensure you
# use colors that the tools you will be using on the graphs understand.

# Color used for cycles in the generated graphs
cycleColor: red

# Color used for public dependencies in the generated graphs
publicDepColor: blue

# Color used for private dependencies in the generated graphs
privateDepColor: lightblue


# Upper bound for the amount of outgoing component links from a single component.
componentLinkLimit: 30

# Lower bound for amount of code in a single component. Used to flag "empty" components.
componentLocLowerLimit: 200

# Upper bound for amount of code in a single component. Used to flag oversized components,
# which typically harbor god class like behaviour, and hold multiple responsibilities.
componentLocUpperLimit: 20000

# Upper bound for file size. Large files are hard to understand and often contain multiple
# logical units, which are then easy to mix up and conflate.
fileLocUpperLimit: 2000

# Whether custom sections, like "set_target_property(...)", from an existing CMakeLists.txt
# file should be reused.
reuseCustomSections: false

# Aliases for CMake command add_library. Each alias is assumed to take similar arguments as the
# vanilla CMake command.
# Each alias must be on its own line. The last line should only contain the closing bracket.
addLibraryAlias: [
  ogs_add_library
]

# Aliases for CMake command add_executable. Each alias is assumed to take similar arguments as the
# vanilla CMake command.
# Each alias must be on its own line. The last line should only contain the closing bracket.
addExecutableAlias: [
  ogs_add_executable
]

#addIgnores: [
# Example/ThirdParty
# Example/test.txt
# ]

# List of folder paths (from the root) that should be completely ignored. May contain multiple
# space-separated values, including values with spaces escaped with quotation marks.
blacklist: [
  build
  Build
  Visual Studio Projects
  unistd.h
  console.h
  stdint.h
  windows.h
  library.h
  endian.h
  rle.h
  Applications/Utils
  Tests
]
back to top