summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmir Masoud Abdol <amirmasoudabdol@icloud.com>2023-01-19 18:10:47 +0100
committerAmir Masoud Abdol <amirmasoudabdol@icloud.com>2023-01-21 11:51:04 +0100
commitdcc3724eed2499b0737f460f358846a8434a3100 (patch)
treeeba4438f56360e14a513ae4eccba01522659d9f1
parentc26af08e42d535fe3ed81c1506ee6e5d3fc35d1c (diff)
downloadqtlocation-dcc3724eed2499b0737f460f358846a8434a3100.tar.gz
Fix the broken test after the retirement of qt_parse_all_arguments
As we are now processing the arguments with cmake_parse_arguments(PARSE_ARGV, we don't need to pass the escape characters anymore. Task-number: QTBUG-99238 Change-Id: I618d4cd0105988bffb1d496fa2b3149d0e609710 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
-rw-r--r--tests/auto/qmlinterface/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qmlinterface/CMakeLists.txt b/tests/auto/qmlinterface/CMakeLists.txt
index 71ce6310..173a0041 100644
--- a/tests/auto/qmlinterface/CMakeLists.txt
+++ b/tests/auto/qmlinterface/CMakeLists.txt
@@ -2,7 +2,7 @@ qt_internal_add_test(tst_qmlinterface
SOURCES
tst_qmlinterface.cpp
DEFINES
- SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
+ SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}/"
LIBRARIES
Qt::Location
Qt::Positioning