CMake Version Manager (cvm
) is a command line tool that help manage currently
installed versions of cmake.
To install cvm
you will need to have cargo. Installing Rust will provide
cargo tools. Visit https://www.rust-lang.org/tools/install for installation
steps. Once installed you can run cargo install cmake-version-manager
.
After installing make sure to add the following to your profiles
* Linux: export PATH=$HOME/.cvm/bins/current/bin:$PATH
* OSX: export PATH=$HOME/.cvm/bins/current/CMAKE.app/Contents/bin:$PATH
* Windows: $env:Path += ";$HOME/.cvm/bins/current/bin"
Below are some visual examples on how to use cvm
. But keep in mind that at any
point you can use cvm --help
to find a list of commands that can be used.
```sh $ cvm install 3.20.2
$ cvm install ```
```sh $ cvm switch 3.20.1
$ cvm switch ```
```sh $ cvm remove 3.20.2
```
```sh
$ cvm list
$ cvm list --all ```
```sh
cvm 3.19.6 ```