X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/388c7f706d43be1e025ac9250b5a068dff3c0a01..d9e0ef0ebfbc2860e7c0b7e7510a4014300074be:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index d6f7d2cb..7d401ade 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,8 +93,7 @@ message (STATUS "Using PHP binary " ${PHP_BIN}) # #----------------------------------------------------------------------------- -set(CUSTOMFILES - settings/phrase_settings.php +set(WEBSITESCRIPTS website/deletable.php website/details.php website/hierarchy.php @@ -103,23 +102,31 @@ set(CUSTOMFILES website/reverse.php website/search.php website/status.php - utils/blocks.php +) + +set(CUSTOMSCRIPTS utils/country_languages.php utils/importWikipedia.php utils/export.php utils/query.php - utils/server_compare.php utils/setup.php utils/specialphrases.php utils/update.php utils/warm.php ) -foreach (cfile ${CUSTOMFILES}) - configure_file(${PROJECT_SOURCE_DIR}/${cfile} ${PROJECT_BINARY_DIR}/${cfile}) +foreach (script_source ${CUSTOMSCRIPTS}) + configure_file(${PROJECT_SOURCE_DIR}/cmake/script.tmpl + ${PROJECT_BINARY_DIR}/${script_source}) +endforeach() + +foreach (script_source ${WEBSITESCRIPTS}) + configure_file(${PROJECT_SOURCE_DIR}/cmake/website.tmpl + ${PROJECT_BINARY_DIR}/${script_source}) endforeach() -configure_file(${PROJECT_SOURCE_DIR}/settings/defaults.php ${PROJECT_BINARY_DIR}/settings/settings.php) +configure_file(${PROJECT_SOURCE_DIR}/settings/defaults.php + ${PROJECT_BINARY_DIR}/settings/settings.php) set(WEBPATHS css images js)