-
Notifications
You must be signed in to change notification settings - Fork 13
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
Verify headers #75
Merged
Merged
Verify headers #75
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
426ca35
Convert to INTERFACE and verify headers
steve-downey 5919e9a
Add verify to build presets
steve-downey 74bd833
Clean up empty CML.txt files
steve-downey b337a9c
Reformat CML.txt to pass lint
steve-downey b7cb332
Add back cmake export file
steve-downey 35f363a
Export a Config.cmake file for FindPackage
steve-downey 5691c2d
Reformat CML.txt
steve-downey af29583
Merge branch 'main' into verify_headers
steve-downey 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
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
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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -13,3 +13,29 @@ target_sources( | |||||
detail/stl_interfaces/fwd.hpp | ||||||
detail/stl_interfaces/iterator_interface.hpp | ||||||
) | ||||||
|
||||||
install( | ||||||
TARGETS beman_optional26 | ||||||
FILE_SET beman_optional26_headers | ||||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} | ||||||
COMPONENT beman_optional26_development | ||||||
) | ||||||
|
||||||
install( | ||||||
TARGETS beman_optional26 | ||||||
EXPORT beman_optional26_export | ||||||
DESTINATION | ||||||
${CMAKE_INSTALL_LIBDIR} | ||||||
FILE_SET beman_optional26_headers | ||||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} | ||||||
COMPONENT beman_optional26_development | ||||||
) | ||||||
|
||||||
install( | ||||||
EXPORT beman_optional26_export | ||||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/beman/optional26/ | ||||||
NAMESPACE Beman::Optional26:: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
? |
||||||
FILE beman_optional26.cmake | ||||||
EXPORT_LINK_INTERFACE_LIBRARIES | ||||||
COMPONENT beman_optional26_development | ||||||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The standard says it should use
.
after beman. Would you like to apply these updates in your PR?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can fix this up as part of the PR. Need to merge in other changes in any case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be great. But feel free to speed-up/skip steps today if you need something in main for Poland.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: that will end in very strange behaviour! Normally I use something like this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is creating the target that gets the named header file_set added to it? It's up here to avoid ordering problems between subdirectories.