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

storage_integration_tests.pro « storage_integration_tests « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70ad3c0cad606c0a8225bae95373e3dba29c44c2 (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
# Storage library tests.

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

ROOT_DIR = ../..
DEPENDENCIES = map drape_frontend routing search storage tracking traffic routing_common transit ugc \
               indexer drape partners_api local_ads platform_tests_support platform editor \
               mwm_diff bsdiff opening_hours geometry coding base freetype expat jansson protobuf \
               osrm stats_client minizip succinct pugixml oauthcpp stb_image sdf_image icu agg

include($$ROOT_DIR/common.pri)

DEFINES *= OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP

QT *= core

macx-* {
  QT *= gui widgets network # needed for QApplication with event loop, to test async events (downloader, etc.)
  LIBS *= "-framework IOKit" "-framework QuartzCore" "-framework SystemConfiguration"
}
win32*|linux* {
  QT *= network
}

HEADERS += \
  test_defines.hpp

SOURCES += \
  ../../testing/testingmain.cpp \
  migrate_tests.cpp \
  storage_3levels_tests.cpp \
  storage_downloading_tests.cpp \
  storage_group_download_tests.cpp \
  storage_http_tests.cpp \
  storage_update_tests.cpp \
  test_defines.cpp \