summaryrefslogtreecommitdiffstats
path: root/examples/corelib
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2024-03-07 15:21:16 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2024-03-11 13:48:24 +0100
commita2e0f3dfbd9f54e20221dbc04360f838b5fa5343 (patch)
treece93bf1f7426ad5ab35225291e800ac258ae2210 /examples/corelib
parentdd052a0a014d53e0c6c14d4828085e0f4810400b (diff)
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 6.7 Task-number: QTBUG-90820 Task-number: QTBUG-123096 Change-Id: I409d20e035956e6c236f84721b3c6882893cd547 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples/corelib')
-rw-r--r--examples/corelib/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/corelib/CMakeLists.txt b/examples/corelib/CMakeLists.txt
index 594cb27c56..38a883b4ea 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()