diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-11 07:50:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-11 07:50:52 (GMT) |
commit | 6987ac927907bd2440abd8336cf6fa095a984bab (patch) | |
tree | ad119a79974ae6f875dffd0801154617755ee59c /src/PlatformUtils.cc | |
parent | d14f0be01c06a872a7fb0cef6e0fa67ad7bc4a4f (diff) | |
parent | 509a466ddd903906d290e30e98e5b6b01359b2f4 (diff) |
Merge pull request #561 from brodykenrick/master
Unicode support for search, length and STRING[] accesses (+ a fix for 3rd Party CGAL lib issue on Ubunti)
Diffstat (limited to 'src/PlatformUtils.cc')
-rw-r--r-- | src/PlatformUtils.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/PlatformUtils.cc b/src/PlatformUtils.cc index b02b822..8b39f6d 100644 --- a/src/PlatformUtils.cc +++ b/src/PlatformUtils.cc @@ -1,6 +1,8 @@ #include "PlatformUtils.h" #include "boosty.h" +#include <glib.h> + bool PlatformUtils::createLibraryPath() { std::string path = PlatformUtils::libraryPath(); @@ -114,6 +116,7 @@ std::string PlatformUtils::info() << "\nOpenCSG version: " << OPENCSG_VERSION_STRING << "\nQt version: " << qtVersion << "\nMingW build: " << mingwstatus + << "\nGLib version: " << GLIB_MAJOR_VERSION << "." << GLIB_MINOR_VERSION << "." << GLIB_MICRO_VERSION << "\nOPENSCADPATH: " << getenv("OPENSCADPATH") << "\n" ; return s.str(); |