]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/CMakeLists.txt
Merge pull request #632 from melvyn-sopacua/libxml2-fixes
[nominatim.git] / nominatim / CMakeLists.txt
1 add_executable(nominatim export.c geometry.cpp import.c index.c input.c nominatim.c postgresql.c sprompt.c)
2 include(CheckIncludeFile)
3 CHECK_INCLUDE_FILE(byteswap.h HAVE_BYTESWAP_H)
4 CHECK_INCLUDE_FILE(sys/endian.h HAVE_SYS_ENDIAN_H)
5 if(HAVE_BYTESWAP_H)
6   target_compile_definitions(nominatim PRIVATE HAVE_BYTESWAP_H)
7 endif(HAVE_BYTESWAP_H)
8 if(HAVE_SYS_ENDIAN_H)
9   target_compile_definitions(nominatim PRIVATE HAVE_SYS_ENDIAN_H)
10 endif(HAVE_SYS_ENDIAN_H)
11 target_link_libraries(nominatim ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${PostgreSQL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
12