-
Notifications
You must be signed in to change notification settings - Fork 61
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
Feature/add cmake support #35
Open
ClausKlein
wants to merge
25
commits into
NoAvailableAlias:master
Choose a base branch
from
ClausKlein:feature/add-cmake-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feature/add cmake support #35
ClausKlein
wants to merge
25
commits into
NoAvailableAlias:master
from
ClausKlein:feature/add-cmake-support
Conversation
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 prevents a hang and/or segfault when trying to lock a moved-from observer. When moving an observer, we now do the equivalent of a disconnect_all on the source object, and also re-wire those connections onto the target object: - Insert all connections previously on the source object into the target - On all connected observers, disconnect them from the source object and re-connect to the target
…, disconnect_all is a noop and we don't need movedFrom
…onstructors Explicitly default/delete copy and move constructors for signal and observer types
Enhanced the move tests and resolved uncovered issues in move_connections_from. Normalized method names, default statement locations, comments.
use CPM for booststap use catch2 for unit tests, not yet finisched!
add used but missing includes (include_what_you_use)
mv header to include subdir
…o-signal-slot into feature/add-cmake-support
Thank you for this PR as well as that opened issue (that is still to be reviewed...). The only thing I can say is to possibly add some text in tests/readme concerning the need for catch2 and a link to it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
To be portable, I had to use
catch2
instead ofCppUnitTestFramework