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

routing_integration_tests.pro « routing_integration_tests « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43c0ffa377956fef045859e546427df87f0d3668 (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
36
37
38
39
# This subproject implements integration tests.
# This tests are launched on the whole world dataset.

# It is recommended to place tests here in the following cases:
# - tests are written to be launch on the whole world dataset;
# - tests covers significant number of subsystems;

TARGET = routing_integration_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app

ROOT_DIR = ../..
DEPENDENCIES = map routing search storage indexer platform editor geometry coding base \
               osrm jansson protobuf tomcrypt succinct stats_client pugixml

DEPENDENCIES += opening_hours

macx-*: LIBS *= "-framework IOKit" "-framework SystemConfiguration"

include($$ROOT_DIR/common.pri)

QT *= core

SOURCES += \
  ../../testing/testingmain.cpp \
  bicycle_route_test.cpp \
  bicycle_turn_test.cpp \
  cross_section_tests.cpp \
  get_altitude_test.cpp \
  online_cross_tests.cpp \
  osrm_route_test.cpp \
  osrm_street_names_test.cpp \
  osrm_turn_test.cpp \
  pedestrian_route_test.cpp \
  routing_test_tools.cpp \

HEADERS += \
  routing_test_tools.hpp \