Commit 416c4c4f authored by Joshua Warner's avatar Joshua Warner

undo setup-autotools.sh -> setup-gtest.sh rename, add setup-cmake.sh instead

parent 41c80e9c
...@@ -15,7 +15,3 @@ echo "========================================================================== ...@@ -15,7 +15,3 @@ echo "==========================================================================
echo echo
echo "Ready to run autoreconf. For example:" echo "Ready to run autoreconf. For example:"
echo " autoreconf -i && ./configure && make -j6 check && sudo make install" echo " autoreconf -i && ./configure && make -j6 check && sudo make install"
echo
echo "Alternatively, use the cmake build (no support for installing yet)."
echo "For example:"
echo " mkdir build && cd build && cmake .. -G 'Unix Makefiles' && make -j6 check"
#! /usr/bin/env bash
set -euo pipefail
if [ ! -e gtest ]; then
echo "================================================================================"
echo "Fetching Google Test code..."
echo "================================================================================"
svn checkout http://googletest.googlecode.com/svn/tags/release-1.7.0 gtest
fi
echo "================================================================================"
echo "Done"
echo "================================================================================"
echo
echo "Ready to run cmake (no support for installing yet). For example:"
echo " mkdir build && cd build && cmake .. -G 'Unix Makefiles' && make -j6 check"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment