new info: boost lib version and tinyxml lib version

pull/1/head
Sebastian Held 2010-10-04 11:35:20 +02:00
parent 77d371788d
commit 388977eac1
1 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include <sys/time.h>
#include <time.h>
#include <H5Cpp.h> // only for H5get_libversion()
#include <boost/version.hpp> // 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();
}