summaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/quicknanobrowser/quicknanobrowser.pro
blob: e4c0cdfd1abc19bb18e5d7604c498216b188efd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
requires(qtConfig(accessibility))

TEMPLATE = app
TARGET = quicknanobrowser

HEADERS = utils.h
SOURCES = main.cpp

RESOURCES += resources.qrc

QT += qml quick webenginequick

CONFIG += qmltypes
QML_IMPORT_NAME = BrowserUtils
QML_IMPORT_MAJOR_VERSION = 1

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

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