From 651c0fd223d21328a7cfd7e97e8c5191b7ad9bf2 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Thu, 7 Mar 2024 15:21:16 +0100 Subject: [PATCH] CMake: Use qt_internal_add_example for bindableproperties bindableproperties is the actual project, not a subdirectory with separate examples. It should use qt_internal_add_example. Pick-to: 6.6 Task-number: QTBUG-90820 Task-number: QTBUG-123096 Change-Id: I409d20e035956e6c236f84721b3c6882893cd547 Reviewed-by: Joerg Bornemann (cherry picked from commit a2e0f3dfbd9f54e20221dbc04360f838b5fa5343) Reviewed-by: Qt Cherry-pick Bot --- examples/corelib/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/corelib/CMakeLists.txt b/examples/corelib/CMakeLists.txt index 594cb27c567..38a883b4ea7 100644 --- a/examples/corelib/CMakeLists.txt +++ b/examples/corelib/CMakeLists.txt @@ -10,5 +10,5 @@ if(QT_FEATURE_thread) add_subdirectory(threads) endif() if(QT_FEATURE_widgets) - add_subdirectory(bindableproperties) + qt_internal_add_example(bindableproperties) endif()