diff options
| author | ruki <[email protected]> | 2019-03-07 23:46:11 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-03-07 16:37:10 +0800 |
| commit | 21238b0d9e97d5345b582c1900c60760a133acf3 (patch) | |
| tree | 848a167192c27def444d02f1371379a02896ca96 | |
| parent | dc1065e586935f318d0436160e021aaabe05934c (diff) | |
add vs2019 version
| -rw-r--r-- | core/src/tbox/src/tbox/prefix/compiler.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/src/tbox/src/tbox/prefix/compiler.h b/core/src/tbox/src/tbox/prefix/compiler.h index 9f4bc42ac..96805d877 100644 --- a/core/src/tbox/src/tbox/prefix/compiler.h +++ b/core/src/tbox/src/tbox/prefix/compiler.h @@ -308,8 +308,10 @@ # define TB_COMPILER_VERSION_STRING "visual c++ .net 2015 (14.0)" # elif (_MSC_VER == 1910 || _MSC_VER == 1911) # define TB_COMPILER_VERSION_STRING "visual c++ .net 2017 (14.1)" -# elif (_MSC_VER > 1911) -# define TB_COMPILER_VERSION_STRING "visual c++ .net >= 2017 (14.1)" +# elif (_MSC_VER == 1920) +# define TB_COMPILER_VERSION_STRING "visual c++ .net 2019 (16.0)" +# elif (_MSC_VER > 1920) +# define TB_COMPILER_VERSION_STRING "visual c++ .net >= 2019 (16.0)" # else # error Unknown visual c++ Compiler Version # endif |
