remove pyosmium-get-changes detection from cmake

pyosmium-get-changes is not longer used.
This commit is contained in:
Sarah Hoffmann 2021-02-02 10:33:15 +01:00
parent 0ad1b28497
commit 59cb1d6c27

View File

@ -57,20 +57,11 @@ endif()
#-----------------------------------------------------------------------------
# python and pyosmium (imports/updates only)
# python (imports/updates only)
#-----------------------------------------------------------------------------
if (BUILD_IMPORTER)
find_package(PythonInterp 3.5 REQUIRED)
find_program(PYOSMIUM pyosmium-get-changes)
if (NOT EXISTS "${PYOSMIUM}")
set(PYOSMIUM_PATH "")
message(WARNING "pyosmium-get-changes not found (required for updates)")
else()
set(PYOSMIUM_PATH "${PYOSMIUM}")
message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
endif()
endif()
#-----------------------------------------------------------------------------