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

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

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

set(
  SRC
  cache_line_size.hpp
  candidate_paths_getter.cpp
  candidate_paths_getter.hpp
  candidate_points_getter.cpp
  candidate_points_getter.hpp
  decoded_path.cpp
  decoded_path.hpp
  graph.cpp
  graph.hpp
  helpers.cpp
  helpers.hpp
  openlr_decoder.cpp
  openlr_decoder.hpp
  openlr_model.cpp
  openlr_model.hpp
  openlr_model_xml.cpp
  openlr_model_xml.hpp
  paths_connector.cpp
  paths_connector.hpp
  road_info_getter.cpp
  road_info_getter.hpp
  road_type_checkers.cpp
  road_type_checkers.hpp
  router.cpp
  router.hpp
  stats.hpp
  way_point.hpp
)

omim_add_library(${PROJECT_NAME} ${SRC})
add_subdirectory(openlr_match_quality)
add_subdirectory(openlr_stat)
omim_add_test_subdirectory(openlr_tests)