mirror of
https://github.com/ZDoom/zdbsp.git
synced 2025-02-14 16:11:56 +00:00
- Fixed version string output for VC++ builds of ZDBSP.
SVN r2087 (trunk)
This commit is contained in:
parent
c512b642a8
commit
050be5fe76
1 changed files with 10 additions and 7 deletions
17
main.cpp
17
main.cpp
|
@ -483,23 +483,26 @@ static void ShowVersion ()
|
||||||
|
|
||||||
"GCC"
|
"GCC"
|
||||||
#if defined(__i386__)
|
#if defined(__i386__)
|
||||||
"-x86 : "
|
"-x86"
|
||||||
#elif defined(__amd64__)
|
#elif defined(__amd64__)
|
||||||
"-amd64 : "
|
"-amd64"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
|
|
||||||
" (VC"
|
"VC"
|
||||||
#if defined(_M_X86)
|
#if defined(_M_IX86)
|
||||||
"-x86 : "
|
"-x86"
|
||||||
|
#if _M_IX86_FP > 1
|
||||||
|
"-SSE2"
|
||||||
|
#endif
|
||||||
#elif defined(_M_X64)
|
#elif defined(_M_X64)
|
||||||
"-x64 : "
|
"-x64"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__DATE__ ")\n");
|
" : " __DATE__ ")\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue