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

integration_tests.pro « integration_tests « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c41d9c4a2b8d7189b2d0943b6ea5ced223bd006b (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
# Map library tests.

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

ROOT_DIR = ../..
DEPENDENCIES = generator routing search storage stats_client jansson zlib indexer platform geometry coding sgitess base protobuf tomcrypt

include($$ROOT_DIR/common.pri)

QT *= core

win32 {
  LIBS += -lShell32
  win32-g++: LIBS += -lpthread
}

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

SOURCES += \
    ../../testing/testingmain.cpp \
    retrieval_test.cpp \
    smoke_test.cpp \
    test_mwm_builder.cpp \
    test_search_engine.cpp \
    test_search_request.cpp \

HEADERS += \
    test_mwm_builder.hpp \
    test_search_engine.hpp \
    test_search_request.hpp \