We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The CMake version in the apt repo is 2.8, but we need 3.0.
The README will have to be updated to indicate that (at least for Debian-based distros) you can't simply apt-get the required CMake package.
The following script works: export fn=/tmp/cmake.sh && ls $fn && (echo "use previous $fn? Enter for yes, ctrl+d for no." && read) || (wget -O $fn http://www.cmake.org/files/v3.0/cmake-3.0.2-Linux-i386.sh 1>&2) && (cd /opt && sudo bash ${fn} && echo sudo ln -f -s /opt/cmake*/bin/cmake /usr/bin/cmake && cd -)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The CMake version in the apt repo is 2.8, but we need 3.0.
The README will have to be updated to indicate that (at least for Debian-based distros) you can't simply apt-get the required CMake package.
The following script works:
export fn=/tmp/cmake.sh && ls $fn && (echo "use previous $fn? Enter for yes, ctrl+d for no." && read) || (wget -O $fn http://www.cmake.org/files/v3.0/cmake-3.0.2-Linux-i386.sh 1>&2) && (cd /opt && sudo bash ${fn} && echo sudo ln -f -s /opt/cmake*/bin/cmake /usr/bin/cmake && cd -)
The text was updated successfully, but these errors were encountered: