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

CMakeLists.txt « generator_tests « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10c85f75b8e6a4514864578a9198925bf946bc20 (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
project(generator_tests)

find_package(sqlite3)

set(
  SRC
  altitude_test.cpp
  check_mwms.cpp
  coasts_test.cpp
  feature_builder_test.cpp
  feature_merger_test.cpp
  metadata_parser_test.cpp
  osm2meta_test.cpp
  osm_id_test.cpp
  osm_o5m_source_test.cpp
  osm_type_test.cpp
  road_access_test.cpp
  restriction_collector_test.cpp
  restriction_test.cpp
  source_data.cpp
  source_data.hpp
  source_to_element_test.cpp
  srtm_parser_test.cpp
  tag_admixer_test.cpp
  tesselator_test.cpp
  transit_test.cpp
  triangles_tree_coding_test.cpp
  types_helper.hpp
  ugc_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

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

link_qt5_core(${PROJECT_NAME})