Tell the user a bit about PDAL's compilation
| 129 | |
| 130 | /// Tell the user a bit about PDAL's compilation |
| 131 | std::string fullVersionString() |
| 132 | { |
| 133 | std::ostringstream os; |
| 134 | |
| 135 | std::string sha = sha1(); |
| 136 | if (!Utils::iequals(sha, "Release")) |
| 137 | sha = sha.substr(0,6); |
| 138 | |
| 139 | os << pdalVersion << " (git-version: " << sha << ")"; |
| 140 | |
| 141 | return os.str(); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | std::string debugInformation() |