summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/gettingStarted/filedialog/filedialog.pro
blob: 0d8dc981b907d8f8c85a0eb485f945f0b348f6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TEMPLATE = lib
CONFIG += qt plugin
QT += declarative

DESTDIR +=  ../plugins
OBJECTS_DIR = tmp
MOC_DIR = tmp

TARGET = FileDialog

HEADERS +=     directory.h \
        file.h \
        dialogPlugin.h

SOURCES +=    directory.cpp \
        file.cpp \
        dialogPlugin.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/declarative/tutorials/gettingStarted/filedialog
qml.files = qmldir
qml.path = $$[QT_INSTALL_EXAMPLES]/declarative/tutorials/gettingStarted/filedialog
INSTALLS += target qml