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: I04c38ec742906dfbe542714c6c91f2712a5e6fb9
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
This commit is contained in:
Amir Masoud Abdol 2023-01-19 18:10:07 +01:00
parent 4d897d9fa4
commit fcd87c6e11
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ qt_internal_add_test(tst_qqmlparser_doc # special case
SOURCES SOURCES
tst_qqmlparser.cpp tst_qqmlparser.cpp
DEFINES DEFINES
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}\\\" SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}"
LIBRARIES LIBRARIES
Qt::Gui Qt::Gui
Qt::QmlPrivate Qt::QmlPrivate

View File

@ -11,7 +11,7 @@ qt_internal_add_test(tst_examples
SOURCES SOURCES
tst_examples.cpp tst_examples.cpp
DEFINES DEFINES
SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}\\\" SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}"
LIBRARIES LIBRARIES
Qt::CorePrivate Qt::CorePrivate
Qt::Gui Qt::Gui