X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8676e45d881f980b82ed4234b83294eb82417d3c..612fd5061275557617dc0726ea08e4c5b82b3474:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index d1dd69ba..15e34cdb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,29 +111,24 @@ if (BUILD_IMPORTER) configure_file(${PROJECT_SOURCE_DIR}/cmake/script.tmpl ${PROJECT_BINARY_DIR}/utils/${script_source}) endforeach() + + set(NOMINATIM_TOOLS + setup + update + admin + ) + + foreach (tool_name ${NOMINATIM_TOOLS}) + configure_file(${PROJECT_SOURCE_DIR}/cmake/tool.tmpl + ${PROJECT_BINARY_DIR}/nominatim-${tool_name}) + endforeach() 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