We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
s2n-tls/CMakeLists.txt
Lines 446 to 452 in 3e57b05
DEPENDS
add_custom_command(TARGET)
If we use DEPENDS for add_custom_command(TARGET), the following warning is reported:
The following keywords are not supported when using add_custom_command(TARGET): DEPENDS.
-DS2N_INTERN_LIBCRYPTO=ON uses the add_custom_command(TARGET).
-DS2N_INTERN_LIBCRYPTO=ON
We can remove the DEPENDS.
What must a solution address in order to solve the problem? How do we know the solution is complete?
Is there anything the solution will intentionally NOT address?
No.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem:
s2n-tls/CMakeLists.txt
Lines 446 to 452 in 3e57b05
DEPENDS
. But we can't useDEPENDS
foradd_custom_command(TARGET)
.If we use
DEPENDS
foradd_custom_command(TARGET)
, the following warning is reported:-DS2N_INTERN_LIBCRYPTO=ON
uses theadd_custom_command(TARGET)
.Solution:
We can remove the
DEPENDS
.Requirements / Acceptance Criteria:
What must a solution address in order to solve the problem? How do we know the solution is complete?
-DS2N_INTERN_LIBCRYPTO=ON
Out of scope:
Is there anything the solution will intentionally NOT address?
No.
The text was updated successfully, but these errors were encountered: