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

win32-msvc*|wince|winrt {
    # Prevents "fatal error C1128: number of sections exceeded object file format limit".
    QMAKE_CXXFLAGS += /bigobj
    # Reduce compile time
    win32-msvc2012|wince|winrt {
        QMAKE_CXXFLAGS_RELEASE -= -O2
        QMAKE_CFLAGS_RELEASE -= -O2
    }
}

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
}