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
Related: #192
Minimal structure:
. ├── CMakeLists.txt ├── get_cpm.cmake ├── libA │ └── CMakeLists.txt └── libB └── CMakeLists.txt
Here, both libA and libB use the same get_cpm.cmake to download their third-party dependencies.
libA
libB
get_cpm.cmake
The symptoms are the same as in #192. The solution is the same as well, we just need to relax the conditions for the extra include(FetchContent).
include(FetchContent)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Related: #192
Minimal structure:
Here, both
libA
andlibB
use the sameget_cpm.cmake
to download their third-party dependencies.The symptoms are the same as in #192. The solution is the same as well, we just need to relax the conditions for the extra
include(FetchContent)
.The text was updated successfully, but these errors were encountered: