mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
11 lines
127 B
Bash
11 lines
127 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
mkdir -p opm-flowdiagnostics/build
|
||
|
|
||
|
(cd opm-flowdiagnostics/build
|
||
|
cmake ../ -DBUILD_SHARED_LIBS=ON
|
||
|
|
||
|
make)
|