updated CLang version detection

This commit is contained in:
Christophe Riccio
2012-09-23 15:27:47 +01:00
parent 3fc42c9e9e
commit 8b5e63375f
2 changed files with 15 additions and 3 deletions

View File

@@ -282,6 +282,10 @@
# define GLM_COMPILER GLM_COMPILER_CLANG32
# elif(__clang_major__ == 3) && (__clang_minor__ == 3)
# define GLM_COMPILER GLM_COMPILER_CLANG33
# elif(__clang_major__ == 4) && (__clang_minor__ == 0)
# define GLM_COMPILER GLM_COMPILER_CLANG40
# elif(__clang_major__ == 4) && (__clang_minor__ == 1)
# define GLM_COMPILER GLM_COMPILER_CLANG41
# else
# define GLM_COMPILER GLM_COMPILER_CLANG
# endif