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