-
Notifications
You must be signed in to change notification settings - Fork 255
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
[develop2] how to skip conan install check #533
Comments
Hi @pwqbot This is because if something changes in CMake, it is possible that it is necessary to install the dependencies, new binaries or whatever. It is impossible to know, so a |
@memsharded
Moreover, if I disable the remote server and subsequently reconfigure CMake, the ensuing 'conan install' execution will prompt for certain build requirements to be built rather than fetched from cache.
|
I see, thanks for the feedback. The optimization of the We also need to think and discuss how the CMake provider will be parameterized/customized by users, that is something planned to do soon. |
Thanks for the reply! I've found that I had set my cppstd to 23 and gnu23 on different machines, which led to the slow calculation of the compatible package. Now I have set them all to 23. |
Hello @memsharded, I've noticed that when I include |
But this shouldn't happen. The |
At present, any action that triggers a CMake configure, such as modifying a CMake file or adding/deleting source files, prompts Conan to run an install check. How can I skip this Conan install step if all packages are already installed?
The text was updated successfully, but these errors were encountered: