diff --git a/openEMS.pro b/openEMS.pro index 8c085ba..3482bb8 100644 --- a/openEMS.pro +++ b/openEMS.pro @@ -48,7 +48,8 @@ win32 { /usr/include/vtk-5.6 LIBS += -lvtkCommon \ -lvtkIO \ - -lvtksys + -lvtksys \ + -lvtkFiltering } QMAKE_LFLAGS += \'-Wl,-rpath,\$$ORIGIN/../CSXCAD\' QMAKE_LFLAGS += \'-Wl,-rpath,\$$ORIGIN/../fparser\' diff --git a/openems.cpp b/openems.cpp index a309107..018a636 100644 --- a/openems.cpp +++ b/openems.cpp @@ -36,6 +36,7 @@ #include "Common/processfields_sar.h" #include // only for H5get_libversion() #include // only for BOOST_LIB_VERSION +#include //external libs #include "tinyxml.h" @@ -196,7 +197,11 @@ string openEMS::GetExtLibsInfo() str << "\t\t" << "tinyxml -- compiled against: " << TIXML_MAJOR_VERSION << '.' << TIXML_MINOR_VERSION << '.' << TIXML_PATCH_VERSION << endl; // boost - str << "\t\t" << "boost -- compiled against: " BOOST_LIB_VERSION << endl; + str << "\t\t" << "boost -- compiled against: " << BOOST_LIB_VERSION << endl; + + //vtk + str << "\t\t" << "vtk -- Version: " << vtkVersion::GetVTKMajorVersion() << "." << vtkVersion::GetVTKMinorVersion() << "." << vtkVersion::GetVTKBuildVersion() << endl; + str << "\t\t" << " compiled against: " << VTK_VERSION << endl; return str.str(); }