929cc27ffe
Currently only the QRegExp based regexp tool is available to help build regular expression. This patch aims to add the equivalent that use the new QRegularExpression class. Change-Id: Ie5f711640b32a6d10ce44d2c7795062c1aacce3f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
12 lines
264 B
Prolog
12 lines
264 B
Prolog
QT += widgets
|
|
|
|
HEADERS = regularexpressiondialog.h
|
|
SOURCES = regularexpressiondialog.cpp \
|
|
main.cpp
|
|
|
|
RESOURCES += regularexpression.qrc
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/tools/regularexpression
|
|
INSTALLS += target
|