Signed-off-by: Steven Noonan <steven@uplinklabs.net>
7HJXBAY24YG6DBGQS2X2FACMPJ32K6AKUGVRADH3DBLIT74BAHPAC
HYVYGSYBKN6CE7NGBGXAAXVNVR3FMIXQOR6ONVPLBDIISIKFDXQQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
7OEQPUSDZ3CTUQYZLALUI7PHZOUBL2TTOKRJBCVEYTL5J2LQUNRQC
//! The operating system.
//! The compiling operating system.
//! The compiling operating system's version. /*! * Specifies the version of the OS that the executable was compiled on. */ std::string BuildOSVersion();
//! The compiling operating system's version.
/*!
* Specifies the version of the OS that the executable was compiled on.
*/
std::string BuildOSVersion();
} std::string BuildOSVersion() { return CRAWL_BUILD_OS_VER;
}
std::string BuildOSVersion()
{
return CRAWL_BUILD_OS_VER;
out += make_stringf("Compiled on OS: %s" EOL, Version::BuildOS().c_str());
out += make_stringf("Compiled on OS: %s" EOL,
Version::BuildOS().c_str());
out += make_stringf("Compiled on OS: %s %s" EOL, Version::BuildOS().c_str(), Version::BuildOSVersion().c_str());
out += make_stringf("Compiled on OS: %s %s" EOL,
Version::BuildOS().c_str(),
Version::BuildOSVersion().c_str());