summaryrefslogtreecommitdiffstats
path: root/examples/quick/quicknanobrowser/quicknanobrowser.pro
blob: 3455f02e04c7f70b63706cdf8d0fd2f00356f470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TEMPLATE = app
TARGET = quicknanobrowser

macx: CONFIG -= app_bundle

HEADERS = quickwindow.h
SOURCES = quickwindow.cpp \
          main.cpp

OTHER_FILES += ContextMenuExtras.qml \
               quickwindow.qml

RESOURCES += resources.qrc
RESOURCES += ../../common/common_resources.qrc

QT += qml quick
QT_PRIVATE += quick-private gui-private core-private

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

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