X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/271c23f459755bc728ce9ad1778454492615ca98..1ee636461c3fe1925731691985161a19cea64247:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 2096c43d..af6b9a92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,6 +77,16 @@ 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) +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}) + #----------------------------------------------------------------------------- # # Setup settings and paths