CMake install from source code
요즘 계속 기본 툴을 다시 설치하는 시간이 자꾸 돌아오는데ㅋㅋㅋ 오늘은 CMake! 가보자구!
1
2
3
4
5
6
wget https://github.com/Kitware/CMake/releases/download/v3.27.6/cmake-3.27.6.tar.gz
tar cmake-3.27.6.tar.gz
cd cmake-3.27.6
#./bootstrap
./configure --prefix=/source/cmake-3.27.6
make -j 10 && make install
This post is licensed under CC BY 4.0 by the author.