forked from hans/Nominatim
update docs for osmosis to pyosmium change
This commit is contained in:
@@ -50,13 +50,13 @@ find_package(PostgreSQL REQUIRED)
|
||||
include_directories(${PostgreSQL_INCLUDE_DIRS})
|
||||
link_directories(${PostgreSQL_LIBRARY_DIRS})
|
||||
|
||||
find_program(OSMOSIS osmosis)
|
||||
if (NOT EXISTS "${OSMOSIS}")
|
||||
set(OSMOSIS_PATH "/nonexistent")
|
||||
message(WARNING "Osmosis not found (required for updates)")
|
||||
find_program(PYOSMIUM pyosmium-get-changes)
|
||||
if (NOT EXISTS "${PYOSMIUM}")
|
||||
set(PYOSMIUM_PATH "/nonexistent")
|
||||
message(WARNING "pyosmium-get-changes not found (required for updates)")
|
||||
else()
|
||||
set(OSMOSIS_PATH "${OSMOSIS}")
|
||||
message(STATUS "Using osmosis at ${OSMOSIS_PATH}")
|
||||
set(PYOSMIUM_PATH "${PYOSMIUM}")
|
||||
message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user