[LINUX] CMAKE 설치

반응형
CMAKE

 

1. 홈페이지에서 최신버전 확인 

https://cmake.org/download/

 

Download | CMake

Current development distribution Each night binaries are created as part of the testing process. Other than passing all of the tests in CMake, this version of CMake should not be expected to work in a production environment. It is being produced so that us

cmake.org

 

# wget https://github.com/Kitware/CMake/releases/download/v3.20.0/cmake-3.20.0.tar.gz

 

2. 압축 해제 및 설치

# tar -xvzf cmake-3.20.0
# cd cmake-3.20.0
# ./bootstrap 
# make 
# make install 

 

3. 버전 확인

# cmake --version 

 

반응형

'OS > Linux' 카테고리의 다른 글

[CENTOS] IP 설정 / 방화벽 해제  (0) 2022.11.26
[Linux] sed 명령어  (1) 2022.11.11
[LINUX] 파일 백업 스크립트 예시  (0) 2022.11.02
[Linux] Find 명령어  (0) 2022.06.09
[Linux] 디렉토리별 용량 정렬  (0) 2022.06.08