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

CMakeLists.txt « storage_tests « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b5b137f74009722711c128352586ad503a30599 (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
53
54
55
56
57
58
59
60
61
62
63
64
project(storage_tests)

add_definitions("-DOMIM_UNIT_TEST_WITH_QT_EVENT_LOOP")

set(
  SRC
  country_info_getter_test.cpp
  country_name_getter_test.cpp
  fake_map_files_downloader.cpp
  fake_map_files_downloader.hpp
  helpers.cpp
  helpers.hpp
  queued_country_tests.cpp
  simple_tree_test.cpp
  storage_tests.cpp
  task_runner.cpp
  task_runner.hpp
  test_map_files_downloader.cpp
  test_map_files_downloader.hpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  drape_frontend
  map
  traffic
  storage
  drape
  generator_tests_support
  generator
  search
  routing
  routing_common
  indexer
  platform_tests_support
  osrm
  editor
  oauthcpp
  platform
  opening_hours
  geometry
  coding
  base
  freetype
  expat
  fribidi
  icu
  jansson
  tess2
  protobuf
  stats_client
  minizip
  succinct
  pugixml
  stb_image
  sdf_image
  ${Qt5Widgets_LIBRARIES}
  ${Qt5Network_LIBRARIES}
  ${LIBZ}
)

link_qt5_core(${PROJECT_NAME})