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

CMakeLists.txt « map_tests « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c66b0322ba6a5fd65073cb52dc6b7652c97ee4d (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
project(map_tests)

add_definitions("-DOMIM_UNIT_TEST_WITH_QT_EVENT_LOOP")

set(
  SRC
  address_tests.cpp
  booking_availability_cache_test.cpp
  booking_filter_test.cpp
  bookmarks_test.cpp
  chart_generator_tests.cpp
  cloud_tests.cpp
  feature_getters_tests.cpp
  ge0_parser_tests.cpp
  geourl_test.cpp
  gps_track_collection_test.cpp
  gps_track_storage_test.cpp
  gps_track_test.cpp
  kmz_unarchive_test.cpp
  mwm_url_tests.cpp
  search_api_tests.cpp
  transliteration_test.cpp
  working_time_tests.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  search_tests_support
  generator_tests_support
  indexer_tests_support
  generator
  map
  drape_frontend
  routing
  traffic
  routing_common
  transit
  search
  storage
  tracking
  drape
  ugc
  indexer
  partners_api
  local_ads
  platform
  editor
  mwm_diff
  bsdiff
  geometry
  coding
  base
  freetype
  icu
  agg
  expat
  protobuf
  jansson
  stats_client
  minizip
  succinct
  pugixml
  stats_client
  opening_hours
  oauthcpp
  drape_frontend
  drape
  tess2
  stb_image
  sdf_image
  ${Qt5Widgets_LIBRARIES}
  ${Qt5Network_LIBRARIES}
  ${LIBZ}
)

link_opengl(${PROJECT_NAME})
link_qt5_core(${PROJECT_NAME})