diff options
author | Sami Shalayel <[email protected]> | 2025-02-28 13:37:18 +0100 |
---|---|---|
committer | Sami Shalayel <[email protected]> | 2025-03-03 08:16:59 +0100 |
commit | 7af878f09f3f5cc3689621cb99fcec3623e1ad4f (patch) | |
tree | c9fc5b186a6c60f21e8d4560bebe17ae2cfb54ae | |
parent | e0791e838daeb0dc99a3f28270bbfda3214a9fbf (diff) |
threadedanimation example: add missing DEPENDENCIES to QtQuick
Add a missing dependency to QtQuick so that qmlls stops complaining
about Spinner's base type QQuickItem.
Amends a86fd709dd4d315cfe4fea77ea0bc730131fe840.
Pick-to: 6.8 6.9
Change-Id: I7e8af3ee053ecbe66074104be86359a006ed9a05
Reviewed-by: Fabian Kosmale <[email protected]>
Reviewed-by: Ulf Hermann <[email protected]>
-rw-r--r-- | examples/quick/scenegraph/threadedanimation/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/quick/scenegraph/threadedanimation/CMakeLists.txt b/examples/quick/scenegraph/threadedanimation/CMakeLists.txt index 0945a13c98..91c351f264 100644 --- a/examples/quick/scenegraph/threadedanimation/CMakeLists.txt +++ b/examples/quick/scenegraph/threadedanimation/CMakeLists.txt @@ -26,6 +26,7 @@ qt_add_qml_module(threadedanimation RESOURCES spinner.png RESOURCE_PREFIX /scenegraph/threadedanimation NO_RESOURCE_TARGET_PATH + DEPENDENCIES QtQuick ) install(TARGETS threadedanimation |