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

CMakeLists.txt « transit - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4f2e6b7c980e99936d50d77b3575e065489fa5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
project(transit)

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

set(
  SRC
  transit_display_info.hpp
  transit_graph_data.cpp
  transit_graph_data.hpp
  transit_serdes.hpp
  transit_speed_limits.hpp
  transit_types.cpp
  transit_types.hpp
)

omim_add_library(${PROJECT_NAME} ${SRC})
omim_add_test_subdirectory(transit_tests)