ubuntu_install_build.sh 155 Bytes
Newer Older
1
2
3
4
5
6
7
8
# install cmake 3.9
wget https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz
tar xvf cmake-3.9.0.tar.gz
cd cmake-3.9.0
./configure
make -j4
make install
cd ..