mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
e86516bbaf
If make is called directly then the -j option is not properly propagated. Instead make gives a warning 'No jobserver avilable'.
11 lines
389 B
CMake
11 lines
389 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
|
|
)
|
|
|