mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
11 lines
148 B
Bash
11 lines
148 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -ex
|
||
|
|
||
|
pushd . > /dev/null
|
||
|
cd opm-autodiff
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake -D SUPERLU_ROOT=../../SuperLU ../
|
||
|
make
|
||
|
popd > /dev/null
|