summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/qanimationcliploader/qanimationcliploader.pro
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2017-02-16 17:38:52 +0000
committerSean Harmer <sean.harmer@kdab.com>2017-02-24 20:41:28 +0000
commit7a3648ef4e884429dbe4bb60ab5a0a838bc5abfc (patch)
treefe617ede422a28854daeddff9f8d9a7874415750 /tests/auto/animation/qanimationcliploader/qanimationcliploader.pro
parent2a485273c1da1f56412bfd19795ac5a29331b770 (diff)
Introduce QAbstractAnimationClip and rename QAnimationClip
Introduced an abstract base class for types of animation clip. Also renamed QAnimationClip to QAnimationClipLoader since it loads data from files. Also renamed corresponding backend type and fixed up unit tests accordingly. Task-number: QTBUG-58898 Change-Id: I01a96e108cbbcd12e01913693e96610598965018 Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com>
Diffstat (limited to 'tests/auto/animation/qanimationcliploader/qanimationcliploader.pro')
-rw-r--r--tests/auto/animation/qanimationcliploader/qanimationcliploader.pro12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/animation/qanimationcliploader/qanimationcliploader.pro b/tests/auto/animation/qanimationcliploader/qanimationcliploader.pro
new file mode 100644
index 000000000..d6ef54df6
--- /dev/null
+++ b/tests/auto/animation/qanimationcliploader/qanimationcliploader.pro
@@ -0,0 +1,12 @@
+TEMPLATE = app
+
+TARGET = tst_qanimationclip
+
+QT += 3dcore 3dcore-private 3danimation 3danimation-private testlib
+
+CONFIG += testcase
+
+SOURCES += \
+ tst_qanimationcliploader.cpp
+
+include(../../core/common/common.pri)