mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Indicate MSVC in build string
git-svn-id: https://svn.eduke32.com/eduke32@4339 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
2afb680d22
commit
ea602827cd
1 changed files with 7 additions and 1 deletions
|
@ -11205,8 +11205,14 @@ int32_t app_main(int32_t argc, const char **argv)
|
||||||
#else
|
#else
|
||||||
" (32-bit)"
|
" (32-bit)"
|
||||||
#endif
|
#endif
|
||||||
|
#if defined (_MSC_VER) || defined(__cplusplus)
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
" MSVC"
|
||||||
|
#endif
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
" C++ build"
|
" C++"
|
||||||
|
#endif
|
||||||
|
" build"
|
||||||
#endif
|
#endif
|
||||||
"\n", s_buildRev);
|
"\n", s_buildRev);
|
||||||
initprintf("Compiled %s\n", __DATE__ " " __TIME__);
|
initprintf("Compiled %s\n", __DATE__ " " __TIME__);
|
||||||
|
|
Loading…
Reference in a new issue