blob: de224033804cab020ed117516351ab40e9467e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
TARGET = widgets
TARGETPATH = Qt/widgets
include(../qimportbase.pri)
QT += declarative
SOURCES += \
graphicslayouts.cpp \
widgets.cpp
HEADERS += \
graphicswidgets_p.h \
graphicslayouts_p.h
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/imports/$$TARGETPATH
target.path = $$TARGETPATH
# install qmldir file
qmldir.files += qmldir
qmldir.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
INSTALLS += target qmldir
|