mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-20 11:48:35 -06:00
12 lines
179 B
Bash
12 lines
179 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
pushd . > /dev/null
|
|
cd opm-parser
|
|
mkdir build
|
|
cd build
|
|
cmake -DENABLE_PYTHON=ON -DBUILD_TESTING=ON ../
|
|
make
|
|
ctest --output-on-failure
|
|
popd > /dev/null
|