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

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

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

ROOT_DIR = ../..
DEPENDENCIES = storage indexer platform_tests_support platform geometry coding base jansson tomcrypt stats_client

include($$ROOT_DIR/common.pri)

win32*: LIBS *= -lshell32
win32-g++: LIBS *= -lpthread
macx-*: LIBS *= "-framework Foundation" "-framework IOKit"
linux*|win32-msvc*: QT *= network

QT *= core

HEADERS += \
  fake_map_files_downloader.hpp \
  task_runner.hpp \

SOURCES += \
  ../../testing/testingmain.cpp \
  country_info_test.cpp \
  fake_map_files_downloader.cpp \
  queued_country_tests.cpp \
  simple_tree_test.cpp \
  storage_tests.cpp \
  task_runner.cpp \