X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/7395eb97914eaf2405041513af60957d2d6702ba..42c80893cb1038e21c05c2d0d30e3a7a20f0fa26:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 88b04051..ba234d55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,14 +45,14 @@ if (NOT ONLY_DOCS) endif() add_subdirectory(osm2pgsql) - find_package(Threads REQUIRED) - unset(PostgreSQL_TYPE_INCLUDE_DIR CACHE) set(PostgreSQL_TYPE_INCLUDE_DIR "/usr/include/") find_package(PostgreSQL REQUIRED) include_directories(${PostgreSQL_INCLUDE_DIRS}) link_directories(${PostgreSQL_LIBRARY_DIRS}) + find_package(PythonInterp 3) + find_program(PYOSMIUM pyosmium-get-changes) if (NOT EXISTS "${PYOSMIUM}") set(PYOSMIUM_PATH "") @@ -72,13 +72,6 @@ if (NOT ONLY_DOCS) message(FATAL_ERROR "Postgresql server package not found.") endif() - find_package(ZLIB REQUIRED) - - find_package(BZip2 REQUIRED) - - find_package(LibXml2 REQUIRED) - include_directories(${LIBXML2_INCLUDE_DIR}) - # Setting PHP binary variable as to command line (prevailing) or auto detect if (NOT PHP_BIN) find_program (PHP_BIN php) @@ -108,8 +101,8 @@ set(WEBSITESCRIPTS ) set(CUSTOMSCRIPTS + utils/check_import_finished.php utils/country_languages.php - utils/importWikipedia.php utils/export.php utils/query.php utils/setup.php @@ -168,7 +161,6 @@ endif() if (NOT ONLY_DOCS) add_subdirectory(module) - add_subdirectory(nominatim) endif() add_subdirectory(docs)