summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/stylesheetbrowser/stylesheetbrowser.pro
blob: c5f1080e39d67e55ac0148098eae5ac67a123f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TEMPLATE = app
TARGET = stylesheetbrowser
QT += webenginewidgets
CONFIG += c++11

HEADERS += \
    mainwindow.h \
    stylesheetdialog.h

SOURCES += \
    main.cpp \
    mainwindow.cpp \
    stylesheetdialog.cpp

FORMS += \
    mainwindow.ui \
    stylesheetdialog.ui

RESOURCES += stylesheetbrowser.qrc

# install
target.path = $$[QT_INSTALL_EXAMPLES]/webenginewidgets/stylesheetbrowser
INSTALLS += target