summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2023-10-23 16:34:18 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-10-24 17:53:51 +0000
commit99c164bea8d5ae0c4e710f726469abe0957654c4 (patch)
tree9a18ba0585565cda09c998d07d2ec483114f6087
parent01fd6d4782c130311af0e87e0b546b641ca0318e (diff)
Fix CMake config after move of example to manual tests
Amends commit acb68bd3bbbc0001bcf460dd175ff92cc3ce594a to change its use of qt_internal_add_example() - appropriate where it came from, not where it was moved to - to plain add_subdirectory(). Pick-to: 6.5 Change-Id: Ie5ea13f8ba57154c0ae1fb44be9a327c88e3b4e2 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> (cherry picked from commit 6aa641c7a2d77de03857a002f80cda525c3065bd) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/manual/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/CMakeLists.txt b/tests/manual/CMakeLists.txt
index f7e9c6c5d..87ae459fd 100644
--- a/tests/manual/CMakeLists.txt
+++ b/tests/manual/CMakeLists.txt
@@ -15,5 +15,5 @@ if(TARGET Qt::WaylandCompositor)
endif()
if(QT_FEATURE_opengl AND TARGET Qt::Quick AND TARGET Qt::WaylandClient)
- qt_internal_add_example(server-buffer)
+ add_subdirectory(server-buffer)
endif()