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: 19d0ba2661f1cdff131c7a5f80a27e4ddb1bac41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# GUI library on top of Graphics

TARGET = gui
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = graphics geometry coding base expat

include($$ROOT_DIR/common.pri)

HEADERS += \
    controller.hpp\
    element.hpp \
    button.hpp \
    text_view.hpp \

SOURCES += \
    controller.cpp \
    element.cpp \
    button.cpp \
    text_view.cpp \