aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldom/combined/CMakeLists.txt
blob: 7952ee33cba5bd613e2420572815a2636353f9cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#####################################################################
## tst_dom_all Binary executing all tests together
## (simpler to verify coverage)
#####################################################################
# Collect test data
file(GLOB_RECURSE test_data_glob
    RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/..
    domdata/*)
list(APPEND test_data ${test_data_glob})

qt_internal_add_test(tst_dom_all
    SOURCES
        tst_dom_all.cpp
        ../stringdumper/tst_qmldomstringdumper.h
        ../errormessage/tst_qmldomerrormessage.cpp ../errormessage/tst_qmldomerrormessage.h
        ../path/tst_qmldompath.h
        ../domitem/tst_qmldomitem.h
        ../merging/tst_dommerging.h
        ../reformatter/tst_reformatter.h
        ../standalone/tst_standalone.h
    INCLUDE_DIRECTORIES
        ..
    DEFINES
        NO_QTEST_MAIN
        QT_DEPRECATED_WARNINGS
        QT_QMLTEST_DATADIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/../domdata\\\"
    LIBRARIES
        Qt::Core
        Qt::QmlDomPrivate
        Qt::Test
    TESTDATA ${test_data}
)

qt_internal_extend_target(tst_dom_all CONDITION ANDROID OR IOS
    DEFINES
        QT_QMLTEST_DATADIR=\\\":/domdata\\\"
)