Regarding this issue, CMake has a so-called installation phase. I'm used to running CMake in this sequence:
cmake .. cmake --build . --config Debug cmake --build . --config Release
Is there a cmake --install command line cmake --install that should be called after that?
Although I believe this is somehow connected, I am not looking for the so-called install command here (I perceive this as a function, not as a command, but this is most likely a terminology problem).
user234736
source share