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
The CMAKE_FIND_PACKAGE_REDIRECTS_DIR is always defined by CMake 3.24+ so that results in CPM_MODULE_PATH always being an empty value since #604.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR
CPM_MODULE_PATH
Which means that the file(WRITE ${CPM_MODULE_PATH}/Find${Name}.cmake won't work unless the CMake process has root permissions
file(WRITE ${CPM_MODULE_PATH}/Find${Name}.cmake
The text was updated successfully, but these errors were encountered:
Pin to CPM 0.40.2 to work around cpm-cmake/CPM.cmake#637
7f174a0
No branches or pull requests
The
CMAKE_FIND_PACKAGE_REDIRECTS_DIR
is always defined by CMake 3.24+ so that results inCPM_MODULE_PATH
always being an empty value since #604.Which means that the
file(WRITE ${CPM_MODULE_PATH}/Find${Name}.cmake
won't work unless the CMake process has root permissionsThe text was updated successfully, but these errors were encountered: