blob: b98be593cc0824fe535e88685d785cacdf2b00c3 (
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_INSTALL_IMPORTS]/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/Qt/widgets
target.path = $$TARGETPATH
# install qmldir file
qmldir.files += qmldir
qmldir.path = $$TARGETPATH
INSTALLS += target qmldir
|