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(); }