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

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

include_directories(${OMIM_ROOT}/3party/jansson/src)

set(
  SRC
  algos_tests.cpp
  house_detector_tests.cpp
  house_numbers_matcher_test.cpp
  interval_set_test.cpp
  keyword_lang_matcher_test.cpp
  keyword_matcher_test.cpp
  latlon_match_test.cpp
  locality_finder_test.cpp
  locality_scorer_test.cpp
  locality_selector_test.cpp
  match_cost_mock.hpp
  nearby_points_sweeper_test.cpp
  query_saver_tests.cpp
  ranking_tests.cpp
  string_intersection_test.cpp
  string_match_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  search
  indexer
  editor
  storage
  platform
  geometry
  coding
  base
  jansson
  oauthcpp
  opening_hours
  protobuf
  pugixml
  stats_client
  succinct
  icu
  ${LIBZ}
)

link_qt5_core(${PROJECT_NAME})