X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2467e9996e787e98deea11d4397a9e9977c163f1..e70f405abddfe5a8a7400424558071ebba769eda:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index a7c7b395..b7a2caaf 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,9 +102,10 @@ set(CUSTOMFILES website/reverse.php website/search.php website/status.php - utils/blocks.php +) + +set(CUSTOMSCRIPTS utils/country_languages.php - utils/imports.php utils/importWikipedia.php utils/export.php utils/query.php @@ -116,11 +116,24 @@ set(CUSTOMFILES 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) +set(CONFIGUREFILES + settings/phrase_settings.php + settings/defaults.php + ) + +foreach (cfile ${CONFIGUREFILES}) + configure_file(${PROJECT_SOURCE_DIR}/${cfile} ${PROJECT_BINARY_DIR}/${cfile}) +endforeach() set(WEBPATHS css images js)