Prototype for MSVC support, still need to figure out the right directives

This commit is contained in:
Dale Glass 2022-06-07 20:42:12 +02:00
parent 1110ac2ca7
commit 39706f1c9a
2 changed files with 8 additions and 0 deletions

View file

@ -157,6 +157,9 @@ if(OVERTE_WARNINGS_WHITELIST)
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
message("Clang compiler detected, suppressing some unsolvable warnings.")
add_compile_definitions(OVERTE_WARNINGS_WHITELIST_CLANG)
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
message("Clang compiler detected, suppressing some unsolvable warnings.")
add_compile_definitions(OVERTE_WARNINGS_WHITELIST_MSVC)
else()
message("We don't know yet how to whitelist warnings for ${CMAKE_CXX_COMPILER_ID}")
endif()

View file

@ -35,6 +35,11 @@
#define OVERTE_IGNORE_DEPRECATED_END _Pragma("clang diagnostic pop")
#elif OVERTE_WARNINGS_WHITELIST_MSVC
// Nothing here yet. Avoids problems with the #warning below, MSVC doesn't like it.
#else
#warning "Don't know how to suppress warnings on this compiler. Please fix me."