cmake

cmake is a cross platform tool for build (build c, cpp project) automation.

install cmake

sudo apt-get install cmake

Update cmake

By default, linux distrubition will have support for cmake but sometime there are dependency on latest cmake. Download latest version of cmake from https://cmake.org/download/

Downloaded file cmake-x.xx.x.tar.gz

tar -xf cmake-x.xx.x.tar.gz
cd cmake-x.xx.x
./configure
make
sudo make install

©2023-2024 rculock.com