new info: boost lib version and tinyxml lib version
parent
77d371788d
commit
388977eac1
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue