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: e6cbf1d4ccf380453354fa5984f5217a09d8176d (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
# Animation library

TARGET = anim
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = geometry coding base expat

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 \