Welcome to mirror list, hosted at ThFree Co, Russian Federation.

anim.pro « anim - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 068320af0ccb0f760d424edc97a3125e7eb3c535 (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
# Animation library

TARGET = anim
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

HEADERS += \
    controller.hpp \
    task.hpp \
    angle_interpolation.hpp \
    segment_interpolation.hpp \
    anyrect_interpolation.hpp \
    value_interpolation.hpp \

SOURCES += \
    controller.cpp \
    task.cpp \
    angle_interpolation.cpp \
    segment_interpolation.cpp \
    value_interpolation.cpp \
    anyrect_interpolation.cpp \