summaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/customdialogs/customdialogs.pro
blob: 1b9a6778ebc7182ffd3c2ad0eeb77cf3b869bcad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
QT += webenginequick

HEADERS += \
    server.h

SOURCES += \
    main.cpp \
    server.cpp

RESOURCES += \
    customdialogs.qrc

target.path = $$[QT_INSTALL_EXAMPLES]/webenginequick/customdialogs
INSTALLS += target

qtHaveModule(widgets) {
    QT += widgets # QApplication is required to get native styling with QtQuickControls
}