mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-27 03:30:17 -06:00
11 lines
150 B
Bash
Executable File
11 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
pushd . > /dev/null
|
|
cd opm-simulators
|
|
mkdir build
|
|
cd build
|
|
cmake -D SUPERLU_ROOT=../../SuperLU ../
|
|
make
|
|
popd > /dev/null
|