X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/a4ecd9d73e93a56aeee336c7fa7e18aa42bd9e03..71ae7f10f74251ebef13abe8d186276e6255b5d4:/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})