mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
e4963256e1
Some postgres installations report problems with the makefile magic that should look for the source where the Makefile is located. So hand in the path explicitly via VPATH instead. Fixes #453.
11 lines
386 B
CMake
11 lines
386 B
CMake
# just use the pgxs makefile
|
|
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
|
|
)
|
|
|