Add Clang 13, 14, & 15 To List Of Compilers To Find

This commit is contained in:
Thomas A 2023-07-25 10:23:08 -07:00
parent b2847095e3
commit 0fed3b813a

View File

@ -12,6 +12,9 @@ if (NOT DEFINED CMAKE_C_COMPILER)
"clang-10"
"clang-11"
"clang-12"
"clang-13"
"clang-14"
"clang-15"
)
endif(NOT DEFINED CMAKE_C_COMPILER)
@ -25,6 +28,9 @@ if (NOT DEFINED CMAKE_CXX_COMPILER)
"clang++-10"
"clang++-11"
"clang++-12"
"clang++-13"
"clang++-14"
"clang++-15"
)
endif(NOT DEFINED CMAKE_CXX_COMPILER)