summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qmetatype/qmetatype.pro
blob: f9c08377ddded2e61577615d8f6741237e017e7c (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
CONFIG += testcase
TARGET = tst_qmetatype
QT = core-private testlib gui
INCLUDEPATH += $$PWD/../../../other/qvariant_common
SOURCES = tst_qmetatype.cpp
TESTDATA=./typeFlags.bin
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0

msvc {
    # Prevents "fatal error C1128: number of sections exceeded object file format limit".
    QMAKE_CXXFLAGS += /bigobj
}

clang {
    # clang has some performance problems with the test. Especially
    # with automaticTemplateRegistration which creates few thousands
    # template instantiations (QTBUG-37237). Removing -O2 and -g
    # improves the situation, but it is not solving the problem.
    QMAKE_CXXFLAGS_RELEASE -= -O2
    QMAKE_CFLAGS_RELEASE -= -O2
    QMAKE_CXXFLAGS_RELEASE -= -g
    QMAKE_CFLAGS_RELEASE -= -g

    # Building for ARM (eg iOS) is affected so much that we disable
    #the template part of the test
    contains(QT_ARCH, arm): DEFINES += TST_QMETATYPE_BROKEN_COMPILER
}