Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion gui/test/resultstree/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
target_compile_options_safe(test-resultstree -Wno-ctad-maybe-unsupported)
endif()
# caused by mocs
# caused by mocks
target_compile_options_safe(test-resultstree -Wno-missing-noreturn)
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# caused by mocs
target_compile_options_safe(test-resultstree -Wno-useless-cast)
# caused by mocks
target_compile_options_safe(test-resultstree -Wno-suggest-attribute=noreturn)
endif()

if (REGISTER_GUI_TESTS)
Expand Down