Skip to content

Commit

Permalink
macOS: Disable deprecated declarations warning
Browse files Browse the repository at this point in the history
Plenty of these with Qt 5.15.
  • Loading branch information
skyjake committed Oct 21, 2020
1 parent 023ca1a commit ab54f65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/cmake/PlatformMacx.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ endif ()

if (${CLANG_VERSION_STRING} VERSION_EQUAL 7.0 OR
${CLANG_VERSION_STRING} VERSION_GREATER 7.0)
append_unique (CMAKE_CXX_FLAGS "-Wno-inconsistent-missing-override") # too many warnings from Qt
# Too many warnings from Qt.
append_unique (CMAKE_CXX_FLAGS "-Wno-deprecated-declarations -Wno-inconsistent-missing-override")
endif ()

set (DENG_FIXED_ASM_DEFAULT OFF)
Expand Down

0 comments on commit ab54f65

Please sign in to comment.