X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/c96e71a3d711722cef00cc983ef7f3c9f011d70d..d9e0ef0ebfbc2860e7c0b7e7510a4014300074be:/nominatim/CMakeLists.txt diff --git a/nominatim/CMakeLists.txt b/nominatim/CMakeLists.txt index 53b5073b..b391a342 100644 --- a/nominatim/CMakeLists.txt +++ b/nominatim/CMakeLists.txt @@ -1,4 +1,12 @@ add_executable(nominatim export.c geometry.cpp import.c index.c input.c nominatim.c postgresql.c sprompt.c) +CHECK_SYMBOL_EXISTS(bswap_32 "byteswap.h" HAVE_BYTESWAP) +CHECK_SYMBOL_EXISTS(bswap32 "sys/endian.h" HAVE_SYS_ENDIAN) + +target_compile_definitions(nominatim + PRIVATE HAVE_BYTESWAP=$ + PRIVATE HAVE_SYS_ENDIAN=$ +) + target_link_libraries(nominatim ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${PostgreSQL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})