With reference to this question there is a so-called 'install' phase in CMake. I'm used to run CMake in a sequence that looks like this:
cmake ..
cmake --build . --config Debug
cmake --build . --config Release
Is there a cmake --install
command line switch meant to be invoked after this?
Although I figure it is somehow related, I'm not looking for the so called install
command here (I perceive this to be a function rather than a command, but this is likely a terminology issue).