mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-18 10:32:08 +03:00
d1b1acaf1d
Basically leaves the part that needs to be done by the automatic vagrant script in the bash script and moves the remaining part into an OS-independent md file. Also fixes some of the instructions for CentOS. Now almost runs through (some minor issue with permission remains).
28 lines
772 B
CMake
28 lines
772 B
CMake
# Auto-generated vagrant install documentation
|
|
|
|
set (INSTALLDOCFILES
|
|
install-on-centos-7
|
|
)
|
|
|
|
foreach (df ${INSTALLDOCFILES})
|
|
ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${df}.md
|
|
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bash2md.sh ${PROJECT_SOURCE_DIR}/vagrant/${df}.sh ${CMAKE_CURRENT_BINARY_DIR}/${df}.md
|
|
MAIN_DEPENDENCY ${PROJECT_SOURCE_DIR}/vagrant/${df}.sh
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/bash2md.sh
|
|
COMMENT "Creating markdown docs from vagrant/${df}.sh"
|
|
)
|
|
|
|
ADD_CUSTOM_TARGET( md_install_${df} ALL
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${df}.md
|
|
)
|
|
endforeach()
|
|
|
|
set (GENERALDOCFILES
|
|
Import_and_update.md
|
|
)
|
|
|
|
foreach (df ${GENERALDOCFILES})
|
|
CONFIGURE_FILE(${df} ${df})
|
|
endforeach()
|
|
|