-
-if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
- message(FATAL_ERROR "The osm2pgsql directory is empty.\
- Did you forget to check out Nominatim recursively?\
- \nTry updating submodules with: git submodule update --init")
-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_program(OSMOSIS osmosis)
-if (NOT EXISTS "${OSMOSIS}")
- set(OSMOSIS_PATH "/nonexistent")
- message(WARNING "Osmosis not found (required for updates)")
-else()
- set(OSMOSIS_PATH "${OSMOSIS}")
- message(STATUS "Using osmosis at ${OSMOSIS_PATH}")
+set(BUILD_DOCS on CACHE BOOL "Build documentation")
+set(BUILD_SERVER on CACHE BOOL "Build API server")
+set(BUILD_MODULE on CACHE BOOL "Build PostgreSQL module")
+set(BUILD_NOMINATIM on CACHE BOOL "Build Nominatim executable")
+set(BUILD_OSM2PGSQL on CACHE BOOL "Build osm2pgsql")
+
+if (BUILD_SERVER)
+ if (BUILD_OSM2PGSQL)
+ if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
+ message(FATAL_ERROR "The osm2pgsql directory is empty.\
+ Did you forget to check out Nominatim recursively?\
+ \nTry updating submodules with: git submodule update --init")
+ endif()
+ add_subdirectory(osm2pgsql)
+ endif()
+
+ 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()
+
+
+ # Setting PHP binary variable as to command line (prevailing) or auto detect
+ if (NOT PHP_BIN)
+ find_program (PHP_BIN php)
+ endif()
+ # sanity check if PHP binary exists
+ if (NOT EXISTS ${PHP_BIN})
+ message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
+ endif()
+ message (STATUS "Using PHP binary " ${PHP_BIN})