diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-17 03:36:58 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-17 03:36:58 (GMT) |
commit | 1aa73df3b86a853469e8938fdc51388011bab961 (patch) | |
tree | db2aa8ab57671c14320a1da1076103fc5069b43e /tests/csgtestcore.cc | |
parent | b6b3e52543696c5d6efd85b4d86fc13abb327518 (diff) |
improve info report. add auto-uploading ability for wiki data/images
Diffstat (limited to 'tests/csgtestcore.cc')
-rw-r--r-- | tests/csgtestcore.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/csgtestcore.cc b/tests/csgtestcore.cc index 9511688..a3d5097 100644 --- a/tests/csgtestcore.cc +++ b/tests/csgtestcore.cc @@ -87,16 +87,11 @@ string info_dump(OffscreenView *glview) #endif std::stringstream out; - out << "OpenSCAD info dump:" - << "\nOpenSCAD Year/Month/Day: " << int(OPENSCAD_YEAR) << "." - << int(OPENSCAD_MONTH) << "." -#ifdef OPENSCAD_DAY - << int(OPENSCAD_DAY); -#endif #define STRINGIFY(x) #x #define TOSTRING(x) STRINGIFY(x) - << "\nOpenSCAD Version: " << TOSTRING(OPENSCAD_VERSION) + out << "\nOpenSCAD Version: " << TOSTRING(OPENSCAD_VERSION) << "\nCompiled by: " << compiler_info + << "\nCompile date: " << __DATE__ << "\nBoost version: " << BOOST_LIB_VERSION << "\nEigen version: " << EIGEN_WORLD_VERSION << "." << EIGEN_MAJOR_VERSION << "." << EIGEN_MINOR_VERSION |