add BUILD_TOOLS flag, retire WITH_TOOLS soon

This commit is contained in:
Dennis Luxen 2014-07-01 15:04:26 +02:00
parent e8fb8e13df
commit 70f257b62f

View File

@ -21,6 +21,7 @@ if (WIN32 AND MSVC_VERSION LESS 1800)
endif()
OPTION(WITH_TOOLS "Build ORSM tools" OFF)
OPTION(BUILD_TOOLS "Build ORSM tools" OFF)
include_directories(${CMAKE_SOURCE_DIR}/Include/)
@ -253,7 +254,7 @@ include_directories(${ZLIB_INCLUDE_DIRS})
target_link_libraries(osrm-extract ${ZLIB_LIBRARY})
target_link_libraries(osrm-routed ${ZLIB_LIBRARY})
if(WITH_TOOLS)
if(WITH_TOOLS OR BUILD_TOOLS)
message(STATUS "Activating OSRM internal tools")
find_package(GDAL)
if(GDAL_FOUND)