blob: aa09b3cb3da3b736389e642a61314ab7f814a1a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
qmldir.files += $$QT_BUILD_TREE/imports/$$TARGETPATH/qmldir
qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
INSTALLS += target qmldir
|