From 419f708d873fe4559e2c2436a04705a73e3c4c57 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 30 Oct 2013 13:01:49 +0100 Subject: [PATCH] build unlock tool and link against git descriptor --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef308f08c..f69a3049a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -181,4 +181,6 @@ if(WITH_TOOLS) target_link_libraries( osrm-cli ${Boost_LIBRARIES} OSRM UUID GITDESCRIPTION ) add_executable ( osrm-io-benchmark Tools/io-benchmark.cpp ) target_link_libraries( osrm-io-benchmark ${Boost_LIBRARIES} GITDESCRIPTION) + add_executable ( osrm-unlock-all Tools/unlock_all_mutexes.cpp ) + target_link_libraries( osrm-unlock-all ${Boost_LIBRARIES} GITDESCRIPTION) endif(WITH_TOOLS)