Reputation: 51
When I install dependencies using conan install --build=missing
conan executes cmake
executable to build them if they are missing. But if I have two different versions of cmake installed in the system, cmake
and cmake3
, what can I do to force conan to use cmake3
binary?
Upvotes: 2
Views: 1043
Reputation: 51
I've figured it out. You can set an environment variable CONAN_CMAKE_PROGRAM
to tell conan to use different cmake executable.
Upvotes: 3