We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0db87a7 commit f0a6d0bCopy full SHA for f0a6d0b
cmake/env.cmake
@@ -115,6 +115,8 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
115
if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
116
string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
117
endif()
118
+
119
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS_SPACED}")
120
121
122
# Project modules/variables
cmake/msvc_warnings.cmake
@@ -29,6 +29,7 @@
29
#
30
31
set(WARNING_FLAGS
32
+ # Visual Studio 2019 Qt 5.15
33
# operator: deprecated between enumerations of different types
34
/wd5054
35
)
0 commit comments