From 388977eac107c8402cb5a2ec74c1f2d14809fe04 Mon Sep 17 00:00:00 2001 From: Sebastian Held Date: Mon, 4 Oct 2010 11:35:20 +0200 Subject: [PATCH] new info: boost lib version and tinyxml lib version --- openems.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openems.cpp b/openems.cpp index e54683e..47a3734 100644 --- a/openems.cpp +++ b/openems.cpp @@ -33,6 +33,7 @@ #include #include #include // only for H5get_libversion() +#include // only for BOOST_LIB_VERSION #include "FDTD/operator_ext_lorentzmaterial.h" @@ -177,6 +178,12 @@ string openEMS::GetExtLibsInfo() str << "\t\t" << " compiled against: " H5_VERS_INFO << endl; } + // tinyxml + 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; + return str.str(); }