setup/doc/cmake.md

21 lines
320 B
Markdown
Raw Permalink Normal View History

2023-05-05 13:10:19 +02:00
* update cache
```
sudo apt update
```
* install
```
sudo apt install cmake --no-install-recommends
```
* confirm installed version
```
cmake --version
```
* to make use of cmake we might want to install the package ```build-essential```
```
sudo apt install build-essential --no-install-recommends
gcc --version
```