mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-11 13:24:07 +00:00
add cmake mode for building documentation only
This commit is contained in:
133
CMakeLists.txt
133
CMakeLists.txt
@@ -35,57 +35,60 @@ add_definitions(-DNOMINATIM_VERSION="${NOMINATIM_VERSION}")
|
|||||||
|
|
||||||
set(BUILD_TESTS off CACHE BOOL "Build test suite" FORCE)
|
set(BUILD_TESTS off CACHE BOOL "Build test suite" FORCE)
|
||||||
set(WITH_LUA off CACHE BOOL "Build with lua support" FORCE)
|
set(WITH_LUA off CACHE BOOL "Build with lua support" FORCE)
|
||||||
|
set(ONLY_DOCS off CACHE BOOL "Build documentation only")
|
||||||
|
|
||||||
if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
|
if (NOT ONLY_DOCS)
|
||||||
message(FATAL_ERROR "The osm2pgsql directory is empty.\
|
if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
|
||||||
Did you forget to check out Nominatim recursively?\
|
message(FATAL_ERROR "The osm2pgsql directory is empty.\
|
||||||
\nTry updating submodules with: git submodule update --init")
|
Did you forget to check out Nominatim recursively?\
|
||||||
|
\nTry updating submodules with: git submodule update --init")
|
||||||
|
endif()
|
||||||
|
add_subdirectory(osm2pgsql)
|
||||||
|
|
||||||
|
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})
|
||||||
|
|
||||||
|
find_program(PYOSMIUM pyosmium-get-changes)
|
||||||
|
if (NOT EXISTS "${PYOSMIUM}")
|
||||||
|
set(PYOSMIUM_PATH "")
|
||||||
|
message(WARNING "pyosmium-get-changes not found (required for updates)")
|
||||||
|
else()
|
||||||
|
set(PYOSMIUM_PATH "${PYOSMIUM}")
|
||||||
|
message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
find_program(PG_CONFIG pg_config)
|
||||||
|
execute_process(COMMAND ${PG_CONFIG} --pgxs
|
||||||
|
OUTPUT_VARIABLE PGXS
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||||
|
|
||||||
|
if (NOT EXISTS "${PGXS}")
|
||||||
|
message(FATAL_ERROR "Postgresql server package not found.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(ZLIB REQUIRED)
|
||||||
|
|
||||||
|
find_package(BZip2 REQUIRED)
|
||||||
|
|
||||||
|
find_package(LibXml2 REQUIRED)
|
||||||
|
include_directories(${LIBXML2_INCLUDE_DIR})
|
||||||
|
|
||||||
|
# Setting PHP binary variable as to command line (prevailing) or auto detect
|
||||||
|
if (NOT PHP_BIN)
|
||||||
|
find_program (PHP_BIN php)
|
||||||
|
endif()
|
||||||
|
# sanity check if PHP binary exists
|
||||||
|
if (NOT EXISTS ${PHP_BIN})
|
||||||
|
message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
|
||||||
|
endif()
|
||||||
|
message (STATUS "Using PHP binary " ${PHP_BIN})
|
||||||
endif()
|
endif()
|
||||||
add_subdirectory(osm2pgsql)
|
|
||||||
|
|
||||||
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})
|
|
||||||
|
|
||||||
find_program(PYOSMIUM pyosmium-get-changes)
|
|
||||||
if (NOT EXISTS "${PYOSMIUM}")
|
|
||||||
set(PYOSMIUM_PATH "")
|
|
||||||
message(WARNING "pyosmium-get-changes not found (required for updates)")
|
|
||||||
else()
|
|
||||||
set(PYOSMIUM_PATH "${PYOSMIUM}")
|
|
||||||
message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
find_program(PG_CONFIG pg_config)
|
|
||||||
execute_process(COMMAND ${PG_CONFIG} --pgxs
|
|
||||||
OUTPUT_VARIABLE PGXS
|
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
||||||
|
|
||||||
if (NOT EXISTS "${PGXS}")
|
|
||||||
message(FATAL_ERROR "Postgresql server package not found.")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(ZLIB REQUIRED)
|
|
||||||
|
|
||||||
find_package(BZip2 REQUIRED)
|
|
||||||
|
|
||||||
find_package(LibXml2 REQUIRED)
|
|
||||||
include_directories(${LIBXML2_INCLUDE_DIR})
|
|
||||||
|
|
||||||
# Setting PHP binary variable as to command line (prevailing) or auto detect
|
|
||||||
if (NOT PHP_BIN)
|
|
||||||
find_program (PHP_BIN php)
|
|
||||||
endif()
|
|
||||||
# sanity check if PHP binary exists
|
|
||||||
if (NOT EXISTS ${PHP_BIN})
|
|
||||||
message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
|
|
||||||
endif()
|
|
||||||
message (STATUS "Using PHP binary " ${PHP_BIN})
|
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@@ -143,26 +146,30 @@ endforeach()
|
|||||||
#
|
#
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
include(CTest)
|
if (NOT ONLY_DOCS)
|
||||||
|
include(CTest)
|
||||||
|
|
||||||
set(TEST_BDD db osm2pgsql api)
|
set(TEST_BDD db osm2pgsql api)
|
||||||
|
|
||||||
foreach (test ${TEST_BDD})
|
foreach (test ${TEST_BDD})
|
||||||
add_test(NAME bdd_${test}
|
add_test(NAME bdd_${test}
|
||||||
COMMAND lettuce features/${test}
|
COMMAND lettuce features/${test}
|
||||||
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests)
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests)
|
||||||
set_tests_properties(bdd_${test}
|
set_tests_properties(bdd_${test}
|
||||||
PROPERTIES ENVIRONMENT "NOMINATIM_DIR=${PROJECT_BINARY_DIR}")
|
PROPERTIES ENVIRONMENT "NOMINATIM_DIR=${PROJECT_BINARY_DIR}")
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
add_test(NAME php
|
add_test(NAME php
|
||||||
COMMAND phpunit ./
|
COMMAND phpunit ./
|
||||||
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests-php)
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests-php)
|
||||||
|
endif()
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|
||||||
add_subdirectory(module)
|
if (NOT ONLY_DOCS)
|
||||||
add_subdirectory(nominatim)
|
add_subdirectory(module)
|
||||||
|
add_subdirectory(nominatim)
|
||||||
|
endif()
|
||||||
add_subdirectory(docs)
|
add_subdirectory(docs)
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user