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

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

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

set(
  SRC
  geocoder.cpp
  geocoder.hpp
  hierarchy.cpp
  hierarchy.hpp
  result.cpp
  result.hpp
  types.cpp
  types.hpp
)

omim_add_library(${PROJECT_NAME} ${SRC})

add_subdirectory(geocoder_cli)
omim_add_test_subdirectory(geocoder_tests)