X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b5480f6e366be7c7d06d8444acc4cfd6a1aa31e2..e4691005e29a540c1b18a553b9bc8e93bad59512:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 79551ce7..b4f4ddb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,26 +114,10 @@ if (BUILD_IMPORTER) endif() #----------------------------------------------------------------------------- -# webserver scripts (API only) +# Targets for running a development webserver from the build directory. #----------------------------------------------------------------------------- if (BUILD_API) - set(WEBSITESCRIPTS - deletable.php - details.php - lookup.php - polygons.php - reverse.php - search.php - status.php - ) - - foreach (script_source ${WEBSITESCRIPTS}) - configure_file(${PROJECT_SOURCE_DIR}/cmake/website.tmpl - ${PROJECT_BINARY_DIR}/website/${script_source}) - endforeach() - - add_custom_target(serve php -S 127.0.0.1:8088 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website @@ -145,13 +129,6 @@ if (BUILD_API) ) endif() -#----------------------------------------------------------------------------- -# default settings -#----------------------------------------------------------------------------- - -configure_file(${PROJECT_SOURCE_DIR}/settings/defaults.php - ${PROJECT_BINARY_DIR}/settings/settings.php) - #----------------------------------------------------------------------------- # Tests #-----------------------------------------------------------------------------