mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
It makes it easier to install Nominatim server and PostgresSQL on separate servers or use separate docker images for them.
27 lines
925 B
CMake
27 lines
925 B
CMake
add_executable(nominatim export.c geometry.cpp import.c index.c input.c nominatim.c postgresql.c sprompt.c)
|
|
include(CheckSymbolExists)
|
|
|
|
CHECK_SYMBOL_EXISTS(bswap_32 "byteswap.h" HAVE_BYTESWAP)
|
|
CHECK_SYMBOL_EXISTS(bswap32 "sys/endian.h" HAVE_SYS_ENDIAN)
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
find_package(BZip2 REQUIRED)
|
|
find_package(LibXml2 REQUIRED)
|
|
find_package(Threads REQUIRED)
|
|
|
|
unset(PostgreSQL_TYPE_INCLUDE_DIR CACHE)
|
|
set(PostgreSQL_TYPE_INCLUDE_DIR "/usr/include/")
|
|
find_package(PostgreSQL REQUIRED)
|
|
include_directories(${PostgreSQL_INCLUDE_DIRS})
|
|
link_directories(${PostgreSQL_LIBRARY_DIRS})
|
|
|
|
include_directories(${LIBXML2_INCLUDE_DIR})
|
|
|
|
target_compile_definitions(nominatim
|
|
PRIVATE HAVE_BYTESWAP=$<BOOL:${HAVE_BYTESWAP}>
|
|
PRIVATE HAVE_SYS_ENDIAN=$<BOOL:${HAVE_SYS_ENDIAN}>
|
|
)
|
|
|
|
target_link_libraries(nominatim ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${PostgreSQL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
|