#include "Version.h"
//! @file
//! Implement a free function to access the application version.
//!
//! @warning
//! DON'T EDIT MANUALLY Version.cpp. @e Version.cpp is generated from
//! @e Version.cpp.in by the @e cmake/make_versioncpp.py utility script
//! that is used or should be used by all build systems.
namespace {
static const std::string retval = "v${FreeOrion_VERSION} ${FreeOrion_BRANCH}[build ${FreeOrion_BUILD_NO}] ${FreeOrion_BUILDSYS}";
}
const std::string& FreeOrionVersionString()
{ return retval; }
|