From 2e04ba299437296edcb42f9366d73c812b70373f Mon Sep 17 00:00:00 2001 From: Craig Scott Date: Wed, 1 Sep 2021 21:59:01 +1000 Subject: [PATCH] Disable quick examples currently breaking top level builds The add_subdirectory("../shared" "shared") pattern used by these examples seems to somehow trigger an AUTOMOC-related generation error. The cause is not currently known, so this change temporarily disables those tests until a proper fix can be found. Task-number: QTBUG-96159 Change-Id: I2525b77d0a25c3e3191ae2956857acabc0aedbf5 Reviewed-by: Fabian Kosmale (cherry picked from commit d83c303b95e83895740d7b93262af7ba125edbcb) Reviewed-by: Qt Cherry-pick Bot --- examples/quick/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/quick/CMakeLists.txt b/examples/quick/CMakeLists.txt index 80c163856a..13f41b5a7d 100644 --- a/examples/quick/CMakeLists.txt +++ b/examples/quick/CMakeLists.txt @@ -10,7 +10,7 @@ qt_internal_add_example(keyinteraction) qt_internal_add_example(layouts) add_subdirectory(localstorage) add_subdirectory(models) -qt_internal_add_example(views) +#qt_internal_add_example(views) add_subdirectory(tableview) qt_internal_add_example(mousearea) qt_internal_add_example(positioners) @@ -19,12 +19,12 @@ add_subdirectory(scenegraph) qt_internal_add_example(shadereffects) qt_internal_add_example(text) qt_internal_add_example(threading) -qt_internal_add_example(touchinteraction) +#qt_internal_add_example(touchinteraction) add_subdirectory(tutorials) add_subdirectory(customitems) qt_internal_add_example(imageprovider) qt_internal_add_example(imageresponseprovider) -qt_internal_add_example(window) +#qt_internal_add_example(window) add_subdirectory(particles) qt_internal_add_example(delegatechooser) qt_internal_add_example(shapes)