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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-02-16 12:21:01 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:37:28 +0300
commit0c2867e55929796004a6dfabf142c3b20ab845e4 (patch)
treed0f874590433b7b5c763e574c7ac3a13120a7e67 /3party/osrm
parent6d1053e8278676e00589a481dab4f03cff584794 (diff)
[routing] OSRM backend build fix
Diffstat (limited to '3party/osrm')
-rw-r--r--3party/osrm/osrm-backend/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/3party/osrm/osrm-backend/CMakeLists.txt b/3party/osrm/osrm-backend/CMakeLists.txt
index b64a1255a0..d1fe801a45 100644
--- a/3party/osrm/osrm-backend/CMakeLists.txt
+++ b/3party/osrm/osrm-backend/CMakeLists.txt
@@ -195,8 +195,10 @@ target_link_libraries(osrm-datastore ${Boost_LIBRARIES})
target_link_libraries(osrm-mapsme ${Boost_LIBRARIES} OSRM
debug "${CMAKE_SOURCE_DIR}/../../../../omim-build-debug/out/debug/libcoding.a"
"${CMAKE_SOURCE_DIR}/../../../../omim-build-debug/out/debug/libbase.a"
+ "${CMAKE_SOURCE_DIR}/../../../../omim-build-debug/out/debug/librouting.a"
general "${CMAKE_SOURCE_DIR}/../../../../omim-build-release/out/release/libcoding.a"
- "${CMAKE_SOURCE_DIR}/../../../../omim-build-release/out/release/libbase.a")
+ "${CMAKE_SOURCE_DIR}/../../../../omim-build-release/out/release/libbase.a"
+ "${CMAKE_SOURCE_DIR}/../../../../omim-build-release/out/release/librouting.a")
find_package(Threads REQUIRED)
target_link_libraries(osrm-extract ${CMAKE_THREAD_LIBS_INIT} ${OPTIONAL_OMP_LIB})