mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-13 10:26:11 +03:00
e286d3f23d
It uses the same PostgreSQL_ADDITIONAL_VERSIONS variable as osm2pgsql so that setting that should be sufficient to make it work.
29 lines
848 B
CMake
29 lines
848 B
CMake
# just use the pgxs makefile
|
|
|
|
foreach(suffix ${PostgreSQL_ADDITIONAL_VERSIONS} "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3")
|
|
list(APPEND PG_CONFIG_HINTS
|
|
"/usr/pgsql-${suffix}/bin")
|
|
endforeach()
|
|
|
|
find_program(PG_CONFIG pg_config HINTS ${PG_CONFIG_HINTS})
|
|
|
|
|
|
|
|
execute_process(COMMAND ${PG_CONFIG} --pgxs
|
|
OUTPUT_VARIABLE PGXS
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
if (NOT EXISTS "${PGXS}")
|
|
message(FATAL_ERROR "Postgresql server package not found.")
|
|
endif()
|
|
|
|
ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/dummy
|
|
COMMAND PGXS=${PGXS} PG_CONFIG=${PG_CONFIG} MODSRCDIR=${CMAKE_CURRENT_SOURCE_DIR} $(MAKE) -f ${CMAKE_CURRENT_SOURCE_DIR}/Makefile
|
|
COMMENT "Running external makefile ${PGXS}"
|
|
)
|
|
|
|
ADD_CUSTOM_TARGET( nominatim_lib ALL
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/dummy
|
|
)
|
|
|