-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'juce-framework:master' into master
- Loading branch information
Showing
3,224 changed files
with
616,609 additions
and
259,589 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,23 @@ | ||
Checks: > | ||
-clang-analyzer-cplusplus.NewDeleteLeaks, | ||
-clang-analyzer-optin.performance.Padding, | ||
-clang-analyzer-security.FloatLoopCounter, | ||
-clang-analyzer-security.insecureAPI.strcpy, | ||
modernize-concat-nested-namespaces, | ||
WarningsAsErrors: '*' | ||
|
||
# No negative lookahead available here, which makes things difficult. | ||
# | ||
# We want checks to run on JUCE files included from the JUCE modules. We can | ||
# restrict these to files named `juce_.*`. | ||
# | ||
# We also want checks to run on any files inlcuded from the examples or extras | ||
# directories. However, some include paths generated by the Android Studio build | ||
# system look like: | ||
# | ||
# ~/JUCE/examples/DemoRunner/Builds/Android/app/../../../../../modules/juce_box2d/box2d/Collision/b2CollideEdge.cpp | ||
# | ||
# Since we can only opt-in to paths, we restrict the maximum depth of the path | ||
# past examples/extras. | ||
HeaderFilterRegex: '(.*\/modules\/juce_.*juce_[^\/]*$)|(\/(examples|extras)(\/[^\/]*){1,7}$)' |
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 |
---|---|---|
|
@@ -65,3 +65,5 @@ extras/Projucer/JUCECompileEngine.dylib | |
/build | ||
|
||
CMakeUserPresets.json | ||
.editorconfig | ||
|
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
include: | ||
- project: 'juce-repos/JUCE-utils' | ||
file: '/CI/gitlab-ci.yml' | ||
variables: | ||
REF: &REF master | ||
|
||
include: | ||
- project: juce-repos/JUCE-utils | ||
file: /CI/gitlab-ci.yml | ||
ref: *REF | ||
inputs: | ||
ref: *REF |
Oops, something went wrong.