Skip to content

Commit 7541c15

Browse files
committed
test
1 parent 7410ead commit 7541c15

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

gui/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ CheckOptions:
6969
endif()
7070
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
7171
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
72-
target_compile_options_safe(cppcheck-gui -Wno-ctad-maybe-unsupported)
72+
#target_compile_options_safe(cppcheck-gui -Wno-ctad-maybe-unsupported)
7373
endif()
7474
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
7575
# caused by mocs
@@ -78,7 +78,7 @@ CheckOptions:
7878
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.2")
7979
# QBrush fails to compile before 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-134038
8080
# QtCharts/qxyseries.h fails to compile in 6.9.0 and 6.9.1 - see https://bugreports.qt.io/browse/QTBUG-135637
81-
#target_compile_definitions(cppcheck-gui PRIVATE -DQT_NO_QPAIR)
81+
target_compile_definitions(cppcheck-gui PRIVATE -DQT_NO_QPAIR)
8282
endif()
8383
target_compile_definitions(cppcheck-gui PRIVATE -DQT_NO_FOREACH)
8484

gui/test/cppchecklibrarydata/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ target_link_libraries(test-cppchecklibrarydata ${QT_CORE_LIB} ${QT_TEST_LIB})
1515
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1616
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
1717
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
18-
target_compile_options_safe(test-cppchecklibrarydata -Wno-ctad-maybe-unsupported)
18+
#target_compile_options_safe(test-cppchecklibrarydata -Wno-ctad-maybe-unsupported)
1919
endif()
2020
endif()
2121

gui/test/filelist/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ target_link_libraries(test-filelist ${QT_CORE_LIB} ${QT_TEST_LIB})
1818
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1919
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
2020
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
21-
target_compile_options_safe(test-filelist -Wno-ctad-maybe-unsupported)
21+
#target_compile_options_safe(test-filelist -Wno-ctad-maybe-unsupported)
2222
endif()
2323
endif()
2424

gui/test/projectfile/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ target_link_libraries(test-projectfile ${QT_CORE_LIB} ${QT_TEST_LIB})
1313
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1414
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
1515
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
16-
target_compile_options_safe(test-projectfile -Wno-ctad-maybe-unsupported)
16+
#target_compile_options_safe(test-projectfile -Wno-ctad-maybe-unsupported)
1717
endif()
1818
endif()
1919

gui/test/resultstree/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ endif()
4141
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
4242
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
4343
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
44-
target_compile_options_safe(test-resultstree -Wno-ctad-maybe-unsupported)
44+
#target_compile_options_safe(test-resultstree -Wno-ctad-maybe-unsupported)
4545
endif()
4646
# caused by mocks
4747
target_compile_options_safe(test-resultstree -Wno-missing-noreturn)

gui/test/translationhandler/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ target_link_libraries(test-translationhandler ${QT_CORE_LIB} ${QT_WIDGETS_LIB} $
1313
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1414
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
1515
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
16-
target_compile_options_safe(test-translationhandler -Wno-ctad-maybe-unsupported)
16+
#target_compile_options_safe(test-translationhandler -Wno-ctad-maybe-unsupported)
1717
endif()
1818
endif()
1919

gui/test/xmlreportv2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ endif()
3131
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
3232
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
3333
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
34-
target_compile_options_safe(test-xmlreportv2 -Wno-ctad-maybe-unsupported)
34+
#target_compile_options_safe(test-xmlreportv2 -Wno-ctad-maybe-unsupported)
3535
endif()
3636
endif()
3737

tools/triage/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ CheckOptions:
3737
endif()
3838
if(QT_VERSION VERSION_GREATER_EQUAL "6.9.0")
3939
# caused by Qt generated moc code starting with 6.9.0 - see https://bugreports.qt.io/browse/QTBUG-135638
40-
target_compile_options_safe(triage -Wno-ctad-maybe-unsupported)
40+
#target_compile_options_safe(triage -Wno-ctad-maybe-unsupported)
4141
endif()
4242
target_compile_definitions(triage PRIVATE -DQT_NO_FOREACH)
4343

0 commit comments

Comments
 (0)