summaryrefslogtreecommitdiffstats
path: root/animators/src/src.pro
blob: f8cf77b2b4c9ae40ce8506998a3da487281297a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
TARGET = animators
TEMPLATE = lib

QT = core gui v8 qml quick
QT += quick-private qml-private v8-private gui-private core-private

CONFIG += plugin

DEFINES += ANIMATORS_DEBUG

HEADERS += \
    qsganimatorcontroller.h \
    qsganimatedtransform.h \
    qsganimatedtranslate.h \
    qsganimatedscale.h \
    qsganimatedrotation.h \
    qsganimatoritem.h \
    qsgsequentialanimator.h \
    qsgparallelanimator.h \
    qsgtoplevelanimator.h \
    qsgpauseanimator.h \
    qsganimatedproperty.h \
    qsgpropertyanimator.h \
    qsgabstractanimator.h \
    qsgsequentialanimation.h \
    qsgpropertyanimation.h \
    qsgpauseanimation.h \
    qsgparallelanimation.h \
    qsgabstractanimation.h \
    qsgnumberanimation.h \
    qsgcoloranimation.h \
    qsgvector3danimation.h \
    qsganimatorshadereffect.h \
    qsganimatornode.h \
    qsganimatorhost.h

SOURCES += \
    qsganimatoritem.cpp \
    qsganimatorplugin.cpp \
    qsganimatorcontroller.cpp \
    qsganimatedtransform.cpp \
    qsganimatedtranslate.cpp \
    qsganimatedscale.cpp \
    qsganimatedrotation.cpp \
    qsgsequentialanimator.cpp \
    qsgparallelanimator.cpp \
    qsgtoplevelanimator.cpp \
    qsgpauseanimator.cpp \
    qsganimatedproperty.cpp \
    qsgpropertyanimator.cpp \
    qsgabstractanimator.cpp \
    qsgsequentialanimation.cpp \
    qsgpropertyanimation.cpp \
    qsgpauseanimation.cpp \
    qsgparallelanimation.cpp \
    qsgabstractanimation.cpp \
    qsgvector3danimation.cpp \
    qsgnumberanimation.cpp \
    qsgcoloranimation.cpp \
    qsganimatorshadereffect.cpp \
    qsganimatornode.cpp

target.path = $$[QT_INSTALL_IMPORTS]/Animators

qmldir.files = qmldir
qmldir.path = $$[QT_INSTALL_IMPORTS]/Animators

INSTALLS = target qmldir