diff -r a44e4c057f57 -r 6c8d4e140f27 QTfrontend/ui/widget/about.cpp --- a/QTfrontend/ui/widget/about.cpp Sun Oct 14 21:25:59 2018 +0300 +++ b/QTfrontend/ui/widget/about.cpp Sun Oct 14 21:57:30 2018 +0300 @@ -100,12 +100,16 @@ //: For the version numbers of Hedgewars' software dependencies QString libinfo = QString(tr("Dependency versions:") + QString("
")); -#ifdef __GNUC__ +#if defined(__GNUC__) libinfo.append(QString(tr("GCC: %1")).arg(__VERSION__)); +#elif defined(WIN32_VCPKG) + libinfo.append(QString(tr("VC++: %1")).arg(_MSC_FULL_VER)); +#elif defined(__VERSION__) + libinfo.append(QString(tr("Unknown Compiler: %1")).arg(__VERSION__)); +#else + libinfo.append(QString(tr("Unknown Compiler"))); +#endif libinfo.append(QString("
")); -#else - libinfo.append(QString(tr("Unknown Compiler")).arg(__VERSION__) + QString("
")); -#endif const SDL_version *sdl_ver; SDL_version sdl_version;