Files
opm-core/travis/clone-and-build-superlu.sh
Jean-Paul Balabanian ab3ea52384 Added Travis support
2016-02-08 06:56:30 +01:00

12 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
set -e
pushd . > /dev/null
git clone https://github.com/starseeker/SuperLU.git
cd SuperLU
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=.. -D SUPERLU_BUILD_EXAMPLES=OFF -D SUPERLU_ENABLE_TESTING=OFF ../
make install
popd > /dev/null