X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/a4ecd9d73e93a56aeee336c7fa7e18aa42bd9e03..e9407cd48d4c1bed336ad834ac40f009f61921f5:/nominatim/CMakeLists.txt diff --git a/nominatim/CMakeLists.txt b/nominatim/CMakeLists.txt index 53b5073b..726ec4cc 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) - +include(CheckIncludeFile) +CHECK_INCLUDE_FILE(byteswap.h HAVE_BYTESWAP_H) +CHECK_INCLUDE_FILE(sys/endian.h HAVE_SYS_ENDIAN_H) +if(HAVE_BYTESWAP_H) + target_compile_definitions(nominatim PRIVATE HAVE_BYTESWAP_H) +endif(HAVE_BYTESWAP_H) +if(HAVE_SYS_ENDIAN_H) + target_compile_definitions(nominatim PRIVATE HAVE_SYS_ENDIAN_H) +endif(HAVE_SYS_ENDIAN_H) target_link_libraries(nominatim ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${PostgreSQL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})