mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
CMake/MSVC: Fix conflicting flags in mbedtls
This cmake file directly sets CMAKE_<LANG>_FLAGS, which doesn't show up in the COMPILE_COMMANDS target property and so our dolphin_disable_warnings_msvc macro failes to remove it. So we will just commit it out.
This commit is contained in:
parent
6bb2e4d706
commit
5d7643a680
6
Externals/mbedtls/CMakeLists.txt
vendored
6
Externals/mbedtls/CMakeLists.txt
vendored
@ -227,12 +227,14 @@ endif(CMAKE_COMPILER_IS_IAR)
|
|||||||
|
|
||||||
if(CMAKE_COMPILER_IS_MSVC)
|
if(CMAKE_COMPILER_IS_MSVC)
|
||||||
# Strictest warnings
|
# Strictest warnings
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3")
|
# Dolphin/MSVC: we want to disable all warnings for externals
|
||||||
|
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3")
|
||||||
endif(CMAKE_COMPILER_IS_MSVC)
|
endif(CMAKE_COMPILER_IS_MSVC)
|
||||||
|
|
||||||
if(MBEDTLS_FATAL_WARNINGS)
|
if(MBEDTLS_FATAL_WARNINGS)
|
||||||
if(CMAKE_COMPILER_IS_MSVC)
|
if(CMAKE_COMPILER_IS_MSVC)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
|
# Dolphin/MSVC: we want to disable all warnings for externals
|
||||||
|
#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /WX")
|
||||||
endif(CMAKE_COMPILER_IS_MSVC)
|
endif(CMAKE_COMPILER_IS_MSVC)
|
||||||
|
|
||||||
if(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
if(CMAKE_COMPILER_IS_CLANG OR CMAKE_COMPILER_IS_GNU)
|
||||||
|
Loading…
Reference in New Issue
Block a user