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.
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
Add support for GnuTLS #663
base: master
Are you sure you want to change the base?
Add support for GnuTLS #663
Changes from 19 commits
23fed28
49561d2
ad9271b
7444c04
9d94ec5
6ef17e8
cc9d4d8
1367a85
8b9ee52
d3778b3
6eb8d09
52ef72d
10e6871
0aa3288
abf1536
5746ffd
a9da0f2
ac1ecbb
195e1f9
50688b7
d5a3ef2
dc98256
c0ea73c
11bc857
9867f96
3a4a8e0
a6b4579
a018a30
c7d4bb6
bf54b28
98c658f
36fc136
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
No, don't add this. Builds should not happen inside the source tree.
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 repository's ReadMe suggests doing just that. I've seen several other projects follow the same format.
What's so wrong with adding the build/ directory to this file?
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.
At the very least, if it's going to be added to the repository, it needs to happen in it's own pull request.
There are a variety of reasons why builds should not be done inside the source directory, but one specific one that I'll share to help you research the topic, is that cmake natively understands multiple configurations. If you put the build inside the source directory, you pre-clude the ability to have multiple build configurations at the same time.
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 remove it. It's just that it was making my life easier as I've always built libraries this way.