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

generator_tests.pro « generator_tests « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad5d2685336fd4e82663b83bc487890580f24513 (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
31
32
33
34
35
TARGET = generator_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app

ROOT_DIR = ../..
DEPENDENCIES = generator map routing indexer platform geometry coding base expat sgitess protobuf tomcrypt osrm succinct

include($$ROOT_DIR/common.pri)

QT *= core

win32 {
  LIBS *= -lShell32
  win32-g++: LIBS *= -lpthread
}
macx-*: LIBS *= "-framework Foundation"

INCLUDEPATH *= $$ROOT_DIR/3party/expat/lib

HEADERS += \

SOURCES += \
    ../../testing/testingmain.cpp \
    check_mwms.cpp \
    classificator_tests.cpp \
    coasts_test.cpp \
    feature_builder_test.cpp \
    feature_merger_test.cpp \
    osm_id_test.cpp \
    osm_o5m_source_test.cpp \
    osm_parser_test.cpp \
    osm_type_test.cpp \
    tesselator_test.cpp \
    triangles_tree_coding_test.cpp \