summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/tools/qregexp/qregexp.pro
blob: 8b35ecffed3d6c785f4cf6ed568911b27f980ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TEMPLATE = app
TARGET = tst_bench_qregexp
QT = core testlib
CONFIG += release exceptions

SOURCES += main.cpp
RESOURCES += qregexp.qrc

qtHaveModule(script):!pcre {
    DEFINES += HAVE_JSC
    QT += script
}

!qnx {
    exists($$[QT_SYSROOT]/usr/include/boost/regex.hpp) {
        DEFINES += HAVE_BOOST
        LIBS += -lboost_regex
    }
}

DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0