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

gui.pro « gui - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9556a39b03099b0426ee7fdc40e7a760d137cbb2 (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
# GUI library on top of Graphics

TARGET = gui
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = graphics geometry coding base expat zlib

include($$ROOT_DIR/common.pri)

HEADERS += \
    controller.hpp\
    element.hpp \
    button.hpp \
    text_view.hpp \
    balloon.hpp \
    image_view.hpp \
    cached_text_view.hpp \
    display_list_cache.hpp

SOURCES += \
    controller.cpp \
    element.cpp \
    button.cpp \
    text_view.cpp \
    balloon.cpp \
    image_view.cpp \
    cached_text_view.cpp \
    display_list_cache.cpp