Added Visual C++ 2019 detection

This commit is contained in:
Christophe Riccio
2019-04-04 12:24:02 +02:00
parent d162eee1e6
commit 229b762c31
4 changed files with 13 additions and 3 deletions

View File

@@ -31,6 +31,9 @@ int test_compiler()
case GLM_COMPILER_VC15_7:
std::printf("Visual C++ 15.7 - 2017\n");
break;
case GLM_COMPILER_VC16:
std::printf("Visual C++ 16 - 2019\n");
break;
default:
std::printf("Visual C++ version not detected\n");
Error += 1;