You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message(STATUS"You're using ${CMAKE_CXX_COMPILER_ID}${CMAKE_CXX_COMPILER_VERSION}")
12
+
else()
13
+
message(WARNING"!! We recommend that you use clang-14 for this bootcamp. You're using ${CMAKE_CXX_COMPILER_ID}${CMAKE_CXX_COMPILER_VERSION}, a different version.")
14
+
endif()
15
+
elseif(CMAKE_CXX_COMPILER_IDSTREQUAL"AppleClang")
16
+
message(STATUS"You're using ${CMAKE_CXX_COMPILER_ID}${CMAKE_CXX_COMPILER_VERSION}")
17
+
else()
18
+
message(WARNING"!! We recommend that you use clang-14 for this bootcamp. You're using ${CMAKE_CXX_COMPILER_ID}${CMAKE_CXX_COMPILER_VERSION}, which is not clang.")
0 commit comments