From 11d32278f0d92aca0e8a21f0668dacddfe208c8f Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 20 Oct 2015 21:41:24 +0300 Subject: [PATCH] [build] Remove dublicate boost from cmakelist --- 3party/osrm/osrm-backend/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3party/osrm/osrm-backend/CMakeLists.txt b/3party/osrm/osrm-backend/CMakeLists.txt index 3f6e602e59..c423dfa58d 100755 --- a/3party/osrm/osrm-backend/CMakeLists.txt +++ b/3party/osrm/osrm-backend/CMakeLists.txt @@ -240,8 +240,8 @@ target_link_libraries(OSRM ${Boost_LIBRARIES}) target_link_libraries(osrm-extract ${Boost_LIBRARIES}) target_link_libraries(osrm-prepare ${Boost_LIBRARIES}) target_link_libraries(osrm-datastore ${Boost_LIBRARIES}) -target_link_libraries(osrm-routed ${Boost_LIBRARIES} ${OPTIONAL_SOCKET_LIBS} OSRM ${OMIM_LIBRARIES}) -target_link_libraries(osrm-mapsme ${Boost_LIBRARIES} OSRM ${OMIM_LIBRARIES}) +target_link_libraries(osrm-routed ${OPTIONAL_SOCKET_LIBS} OSRM ${OMIM_LIBRARIES}) +target_link_libraries(osrm-mapsme OSRM ${OMIM_LIBRARIES}) find_package(Threads REQUIRED) target_link_libraries(osrm-extract ${CMAKE_THREAD_LIBS_INIT} ${OPTIONAL_OMP_LIB})