X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/99dcd10d3fb1b79ee69ed73def9038a0f5118ebe..80f6aca0c22984b79e24a19bc602258dd3caeb34:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 691c9adc..7794a50b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -128,6 +128,27 @@ if (BUILD_IMPORTER) ${PROJECT_BINARY_DIR}/nominatim) endif() +#----------------------------------------------------------------------------- +# Targets for running a development webserver from the build directory. +#----------------------------------------------------------------------------- + +if (BUILD_API) + set(WEBSITEFILES + 403.html + 509.html + crossdomain.xml + favicon.ico + nominatim.xml + robots.txt + taginfo.json + ) + + foreach (webfile ${WEBSITEFILES}) + configure_file(${PROJECT_SOURCE_DIR}/website/${webfile} + ${PROJECT_BINARY_DIR}/website/${webfile}) + endforeach() +endif() + #----------------------------------------------------------------------------- # Tests #-----------------------------------------------------------------------------