YouCompleteMe/install.sh

57 lines
1.0 KiB
Bash
Raw Normal View History

2013-02-06 11:16:49 -05:00
#!/usr/bin/env bash
set -e
function cmake_install {
if [[ `uname -s` == "Darwin" ]]; then
homebrew_cmake_install
else
linux_cmake_install
fi
}
function homebrew_cmake_install {
if [[ `which brew &> /dev/null` ]]; then
brew install cmake
else
echo "Homebrew was not found installed in your system."
echo "Go to http://mxcl.github.com/homebrew/ and follow the instructions."
echo "Or install CMake somehow and retry."
2013-02-06 11:16:49 -05:00
exit 1
fi
}
function install {
ycm_dir=`pwd`
build_dir=`mktemp -d -t ycm_build`
pushd $build_dir
cmake $ycm_dir/cpp $1
2013-02-06 15:00:58 -05:00
make ycm_core
2013-02-06 11:16:49 -05:00
popd
}
function linux_cmake_install {
echo "Please install CMake using your package manager and retry."
2013-02-06 11:16:49 -05:00
exit 1
}
if [[ $# -gt 1 ]]; then
echo "Usage: $0 [--clang-completer]"
exit 0
fi
case "$1" in
--clang-completer)
cmake_args='-DUSE_CLANG_COMPLETER=ON'
;;
*)
cmake_args=''
;;
esac
2013-02-06 11:16:49 -05:00
if [[ ! -z `which cmake &> /dev/null` ]]; then
echo "CMake is required to build YouCompleteMe."
2013-02-06 11:16:49 -05:00
cmake_install
fi
install $cmake_args