blob: a83badecdf47b0407348e23da86ee1a28d35637e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TEMPLATE = lib
TARGET = qmlmodelsplugin
TARGETPATH = Playground/UiHelpers/Models
QT += qml uihelpers
CONFIG += qt plugin
SOURCES += plugin.cpp
SOURCES += uiquickcompletionmodel.cpp
HEADERS += uiquickcompletionmodel_p.h
target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
qmldir.files += $$PWD/qmldir
qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
INSTALLS += target qmldir
|