mirror of
https://github.com/OPM/opm-upscaling.git
synced 2026-08-26 21:17:11 -05:00
11 lines
149 B
Bash
Executable File
11 lines
149 B
Bash
Executable File
#!/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
|