add skeleton for new Nominatim executables

This commit is contained in:
Sarah Hoffmann
2021-01-12 10:17:28 +01:00
parent a74e736283
commit 612fd50612
4 changed files with 36 additions and 0 deletions

View File

@@ -111,6 +111,17 @@ 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()
#-----------------------------------------------------------------------------