Move OutputWriter to opm-output

Findopm finds opmoutput
This commit is contained in:
Kjell W. Kongsvik 2016-03-16 12:42:10 +01:00
parent 5e1a915f76
commit 855ed76b10
2 changed files with 5 additions and 3 deletions

View File

@ -21,16 +21,16 @@ find_opm_package (
"${opm-output_DEPS}"
# header to search for
"opm/output/Output.hpp"
"opm/output/OutputWriter.hpp"
# library to search for
# "opmoutput"
"opmoutput"
# defines to be added to compilations
""
# test program
"#include <opm/output/Output.hpp>
"#include <opm/output/OutputWriter.hpp>
int main (void) {
return 0;
}

View File

@ -21,4 +21,6 @@ set (opm-output_DEPS
"opm-common REQUIRED"
# Parser library for ECL-type simulation models
"opm-parser REQUIRED"
# TODO remove this dependancy
"opm-core REQUIRED";
)