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

drape_tests.pro « drape_tests « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b06a55034be31522373b2e34338c39bbfd7ed11b (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
40
41
42
43
44
45
46
47
48
49
50
51
52
TARGET = drape_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app
INCLUDEPATH += ../../3party/icu/common ../../3party/icu/i18n
DEFINES += OGL_TEST_ENABLED GTEST_DONT_DEFINE_TEST COMPILER_TESTS U_DISABLE_RENAMING

ROOT_DIR = ../..
DEPENDENCIES = qt_tstfrm indexer platform coding geometry base gmock freetype expat stats_client stb_image sdf_image icu

include($$ROOT_DIR/common.pri)

QT *= core gui widgets

DRAPE_DIR = ..
include($$DRAPE_DIR/drape_common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/gmock/include $$ROOT_DIR/3party/gmock/gtest/include

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

SOURCES += \
    attribute_provides_tests.cpp \
    batcher_tests.cpp \
    bidi_tests.cpp \
    bingind_info_tests.cpp \
    buffer_tests.cpp \
    failure_reporter.cpp \
    font_texture_tests.cpp \
    glfunctions.cpp \
    glmock_functions.cpp \
    glyph_mng_tests.cpp \
    glyph_packer_test.cpp \
    img.cpp \
    pointers_tests.cpp \
    static_texture_tests.cpp \
    stipple_pen_tests.cpp \
    testingmain.cpp \
    texture_of_colors_tests.cpp \
    uniform_value_tests.cpp \

HEADERS += \
    dummy_texture.hpp \
    glmock_functions.hpp \
    img.hpp \
    memory_comparer.hpp \