From 855ed76b10999094905dbb588965e46bd6bc7869 Mon Sep 17 00:00:00 2001 From: "Kjell W. Kongsvik" Date: Wed, 16 Mar 2016 12:42:10 +0100 Subject: [PATCH] Move OutputWriter to opm-output Findopm finds opmoutput --- cmake/Modules/Findopm-output.cmake | 6 +++--- cmake/Modules/opm-output-prereqs.cmake | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cmake/Modules/Findopm-output.cmake b/cmake/Modules/Findopm-output.cmake index 8ccad216b..2fb635350 100644 --- a/cmake/Modules/Findopm-output.cmake +++ b/cmake/Modules/Findopm-output.cmake @@ -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 +"#include int main (void) { return 0; } diff --git a/cmake/Modules/opm-output-prereqs.cmake b/cmake/Modules/opm-output-prereqs.cmake index e4904bb04..398e60746 100644 --- a/cmake/Modules/opm-output-prereqs.cmake +++ b/cmake/Modules/opm-output-prereqs.cmake @@ -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"; )