From 59cb1d6c279655937fa24fe5f84fd00b89cbea31 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 2 Feb 2021 10:33:15 +0100 Subject: [PATCH] remove pyosmium-get-changes detection from cmake pyosmium-get-changes is not longer used. --- CMakeLists.txt | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d579bf1a..f5820c7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() #----------------------------------------------------------------------------- -- 2.45.1