blob: 2a0b8f5a3873754f65bf2c3c08f24ee7d406c327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TARGET = particles
TARGETPATH = Qt/labs/particles
include(../qimportbase.pri)
QT += declarative
SOURCES += \
qdeclarativeparticles.cpp \
particles.cpp
HEADERS += \
qdeclarativeparticles_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
|