-
Notifications
You must be signed in to change notification settings - Fork 22
[beman-tidy] Implement cmake.project_name #313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
vickgoodman
merged 4 commits into
bemanproject:main
from
vickgoodman:beman-tidy-implement-check-cmake.project_name
May 14, 2026
+137
−22
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ae23805
[beman-tidy] Implement cmake.project_name
vickgoodman a14a5cf
Merge branch 'main' into beman-tidy-implement-check-cmake.project_name
vickgoodman 7e13054
[beman-tidy] Add requested changes
vickgoodman 99c68d9
[beman-tidy] Small fixes
vickgoodman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
2 changes: 0 additions & 2 deletions
2
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-CMakeLists-v2.txt
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-CMakeLists-v3.txt
This file was deleted.
Oops, something went wrong.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-library_name-v2.txt
This file contains hidden or 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,2 @@ | ||
| # wrong library target name: beman.exemplar2 | ||
| add_library(beman.exemplar2 INTERFACE) |
2 changes: 2 additions & 0 deletions
2
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-library_name-v3.txt
This file contains hidden or 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,2 @@ | ||
| # wrong library target name: beman_exemplar | ||
| add_library(beman_exemplar INTERFACE) |
9 changes: 9 additions & 0 deletions
9
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-project_name-v1.txt
This file contains hidden or 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,9 @@ | ||
| # missing 'project' from next line | ||
| #[===[ | ||
| project( | ||
| beman.exemplar | ||
| DESCRIPTION "A Beman Library Exemplar" | ||
| LANGUAGES CXX | ||
| VERSION 2.4.0 | ||
| ) | ||
| ]===] |
7 changes: 7 additions & 0 deletions
7
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-project_name-v2.txt
This file contains hidden or 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,7 @@ | ||
| # wrong project name: beman.exemplar2 | ||
| project( | ||
| beman.exemplar2 | ||
| DESCRIPTION "A Beman Library Exemplar" | ||
| LANGUAGES CXX | ||
| VERSION 2.4.0 | ||
| ) |
7 changes: 7 additions & 0 deletions
7
tests/lib/checks/beman_standard/cmake/data/invalid/invalid-project_name-v3.txt
This file contains hidden or 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,7 @@ | ||
| # wrong project name: beman_exemplar | ||
| project( | ||
| beman_exemplar | ||
| DESCRIPTION "A Beman Library Exemplar" | ||
| LANGUAGES CXX | ||
| VERSION 2.4.0 | ||
| ) |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.