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

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

ROOT_DIR = ../..
DEPENDENCIES = platform_tests_support platform coding base minizip tomcrypt jansson

include($$ROOT_DIR/common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/jansson/src

DEFINES *= OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP

QT *= core

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

SOURCES += \
    ../../testing/testingmain.cpp \
    apk_test.cpp \
    country_file_tests.cpp \
    get_text_by_id_tests.cpp \
    jansson_test.cpp \
    language_test.cpp \
    local_country_file_tests.cpp \
    location_test.cpp \
    measurement_tests.cpp \
    platform_test.cpp \
    video_timer_test.cpp \