mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 20:36:28 +02:00
Prototype for MSVC support, still need to figure out the right directives
This commit is contained in:
parent
1110ac2ca7
commit
39706f1c9a
2 changed files with 8 additions and 0 deletions
|
@ -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()
|
||||
|
|
|
@ -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."
|
||||
|
|
Loading…
Reference in a new issue