-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Oss release 28.0.0-rc created 2023-06-15-13-56 see CHANGELOG.md for details Original commit sha: 546173fb8024cc03c89f82caf65be3f3afa2c0aa Co-authored-by: Askanaz Torosyan <[email protected]> Co-authored-by: Daniel Haas <[email protected]> Co-authored-by: Mirko Sova <[email protected]> Co-authored-by: Violin Yanev <[email protected]> Co-authored-by: Carsten Rohn <[email protected]> Co-authored-by: Tobias Hammer <[email protected]> Co-authored-by: Bernhard Kisslinger <[email protected]> Co-authored-by: Martin Veith <[email protected]> Co-authored-by: Jonathan Conrad <[email protected]> Co-authored-by: Mohamed Sharaf-El-Deen <[email protected]> Co-authored-by: Markus Keppler <[email protected]> * Fixed ios build config. * Applied iOS config to mac build in general. * Separated CMAKE_SYSTEM_NAME for iOS from macOS. * Move all XCode setup into iphone config. --------- Co-authored-by: Ramses Tech User <[email protected]> Co-authored-by: Daniel Haas <[email protected]> Co-authored-by: Mirko Sova <[email protected]> Co-authored-by: Violin Yanev <[email protected]> Co-authored-by: Carsten Rohn <[email protected]> Co-authored-by: Tobias Hammer <[email protected]> Co-authored-by: Bernhard Kisslinger <[email protected]> Co-authored-by: Martin Veith <[email protected]> Co-authored-by: Jonathan Conrad <[email protected]> Co-authored-by: Mohamed Sharaf-El-Deen <[email protected]> Co-authored-by: Markus Keppler <[email protected]> Co-authored-by: Askanaz Torosyan <[email protected]>
- Loading branch information
1 parent
043873a
commit 1be4cf5
Showing
2,893 changed files
with
130,232 additions
and
136,806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ------------------------------------------------------------------------- | ||
# Copyright (C) 2020 BMW AG | ||
# ------------------------------------------------------------------------- | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# ------------------------------------------------------------------------- | ||
|
||
skip_list: | ||
- '106' # Role name ramses-windows-build does not match ``^[a-z][a-z0-9_]+$`` pattern | ||
- '204' # TODO(tobias) Lines should be no longer than 160 chars | ||
- '301' # Commands should not change things if nothing needs doing | ||
- experimental # all rules tagged as experimental | ||
use_default_rules: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# ------------------------------------------------------------------------- | ||
# Copyright (C) 2020 BMW AG | ||
# ------------------------------------------------------------------------- | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# ------------------------------------------------------------------------- | ||
|
||
# Available rules: | ||
# | ||
# T1: title-max-length | ||
# T2: title-trailing-whitespace | ||
# T3: title-trailing-punctuation (disabled) | ||
# T4: title-hard-tab | ||
# T5: title-must-not-contain-word (disabled) | ||
# T6: title-leading-whitespace | ||
# T7: title-match-regex (disabled) | ||
# B1: body-max-line-length | ||
# B2: body-trailing-whitespace | ||
# B3: body-hard-tab | ||
# B4: body-first-line-empty | ||
# B5: body-min-length (disabled) | ||
# B6: body-is-missing (disabled) | ||
# B7: body-changed-file-mention (disabled) | ||
# | ||
# See http://jorisroovers.github.io/gitlint/rules/ for a full description. | ||
|
||
[general] | ||
ignore=T3,T5,T7,B1,B5,B6,B7,CCB1 | ||
|
||
# verbosity should be a value between 1 and 3, the commandline -v flags take precedence over this | ||
verbosity = 3 | ||
|
||
ignore-merge-commits=true | ||
|
||
# Enable debug mode (prints more output). Disabled by default. | ||
# debug=true | ||
|
||
[title-max-length] | ||
line-length=90 | ||
|
||
# [title-must-not-contain-word] | ||
# Comma-separated list of words that should not occur in the title. Matching is case | ||
# insensitive. It's fine if the keyword occurs as part of a larger word (so "WIPING" | ||
# will not cause a violation, but "WIP: my title" will. | ||
# words=wip | ||
|
||
# [title-match-regex] | ||
# python like regex (https://docs.python.org/2/library/re.html) that the | ||
# commit-msg title must be matched to. | ||
# Note that the regex can contradict with other rules if not used correctly | ||
# (e.g. title-must-not-contain-word). | ||
# regex=^US[0-9]* | ||
|
||
[body-max-line-length] | ||
line-length=80 | ||
|
||
# [body-min-length] | ||
# min-length=5 | ||
|
||
# [body-is-missing] | ||
# Whether to ignore this rule on merge commits (which typically only have a title) | ||
# default = True | ||
# ignore-merge-commits=false | ||
|
||
# [body-changed-file-mention] | ||
# List of files that need to be explicitly mentioned in the body when they are changed | ||
# This is useful for when developers often erroneously edit certain files or git submodules. | ||
# By specifying this rule, developers can only change the file when they explicitly reference | ||
# it in the commit message. | ||
# files=gitlint/rules.py,README.md | ||
|
||
# Custom rules | ||
# [soft-body-max-line-length] | ||
# line-length=80 | ||
|
||
# [body-match-regex] | ||
# python like regex (https://docs.python.org/2/library/re.html) that the | ||
# commit-msg body must be matched to. | ||
# regex=(?i)ISSUE-[0-9]* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ------------------------------------------------------------------------- | ||
# Copyright (C) 2020 BMW AG | ||
# ------------------------------------------------------------------------- | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# ------------------------------------------------------------------------- | ||
|
||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
--- | ||
version: 2 | ||
|
||
sphinx: | ||
configuration: doc/sphinx/conf.py | ||
fail_on_warning: true | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: doc/sphinx/requirements.txt | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ------------------------------------------------------------------------- | ||
# Copyright (C) 2018 BMW Car IT GmbH | ||
# ------------------------------------------------------------------------- | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# ------------------------------------------------------------------------- | ||
|
||
--- | ||
extends: default | ||
|
||
ignore: | | ||
/external/googletest/ | ||
/external/asio/ | ||
/external/fmt/ | ||
/external/glm/ | ||
/external/imgui/ | ||
/external/cli11/ | ||
/external/harfbuzz/ | ||
/external/freetype/ | ||
/external/flatbuffers/ | ||
/external/sol/ | ||
/external/google-benchmark/ | ||
/external/glslang/ | ||
/external/lua/ | ||
|
||
rules: | ||
line-length: disable | ||
document-start: disable |
Oops, something went wrong.