Forked from UbuntuEvangelist/How To Install CMake 3.22 Ubuntu 22.04
Created
September 17, 2024 08:18
-
-
Save devtdq1701/450184d76e03af45bbc6be90a2ea2ab5 to your computer and use it in GitHub Desktop.
Install CMake 3.22 Ubuntu 22.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update | |
sudo apt install build-essential | |
sudo apt install libssl-dev | |
export OPENSSL_ROOT_DIR=/usr/include/openssl | |
wget https://cmake.org/files/v3.29/cmake-3.29.2.tar.gz | |
tar -xzvf cmake-3.29.2.tar.gz | |
cd cmake-3.29.2 | |
./bootstrap | |
make -j$(nproc) | |
sudo make install | |
# Update PATH Environment Variable | |
which cmake | |
/usr/local/bin/cmake | |
export PATH=/usr/local/bin/cmake:$PATH | |
source ~/.bashrc | |
cmake --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment