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

integration_tests.pro « integration_tests - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97f91517f5b58c2bd8c45d7532e36af8add8824a (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
# 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 = integration_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app

ROOT_DIR = ..
DEPENDENCIES = map routing search storage indexer platform geometry coding base normalize osrm jansson protobuf tomcrypt succinct stats_client

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

include($$ROOT_DIR/common.pri)

QT *= core

SOURCES += \
  ../testing/testingmain.cpp \
  online_cross_tests.cpp \
  osrm_route_test.cpp \
  osrm_turn_test.cpp \
  pedestrian_route_test.cpp \
  routing_test_tools.cpp \

HEADERS += \
  routing_test_tools.hpp \