1 #-----------------------------------------------------------------------------
7 #-----------------------------------------------------------------------------
9 cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
10 list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
13 #-----------------------------------------------------------------------------
17 #-----------------------------------------------------------------------------
21 set(NOMINATIM_VERSION_MAJOR 3)
22 set(NOMINATIM_VERSION_MINOR 6)
23 set(NOMINATIM_VERSION_PATCH 0)
25 set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}")
27 add_definitions(-DNOMINATIM_VERSION="${NOMINATIM_VERSION}")
30 #-----------------------------------------------------------------------------
32 #-----------------------------------------------------------------------------
34 set(BUILD_IMPORTER on CACHE BOOL "Build everything for importing/updating the database")
35 set(BUILD_API on CACHE BOOL "Build everything for the API server")
36 set(BUILD_MODULE on CACHE BOOL "Build PostgreSQL module")
37 set(BUILD_TESTS on CACHE BOOL "Build test suite")
38 set(BUILD_DOCS on CACHE BOOL "Build documentation")
39 set(BUILD_OSM2PGSQL on CACHE BOOL "Build osm2pgsql (expert only)")
41 #-----------------------------------------------------------------------------
42 # osm2pgsql (imports/updates only)
43 #-----------------------------------------------------------------------------
45 if (BUILD_IMPORTER AND BUILD_OSM2PGSQL)
46 if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
47 message(FATAL_ERROR "The osm2pgsql directory is empty.\
48 Did you forget to check out Nominatim recursively?\
49 \nTry updating submodules with: git submodule update --init")
51 set(BUILD_TESTS_SAVED "${BUILD_TESTS}")
53 set(WITH_LUA off CACHE BOOL "")
54 add_subdirectory(osm2pgsql)
55 set(BUILD_TESTS ${BUILD_TESTS_SAVED})
59 #-----------------------------------------------------------------------------
60 # python and pyosmium (imports/updates only)
61 #-----------------------------------------------------------------------------
64 find_package(PythonInterp 3.5 REQUIRED)
66 find_program(PYOSMIUM pyosmium-get-changes)
67 if (NOT EXISTS "${PYOSMIUM}")
69 message(WARNING "pyosmium-get-changes not found (required for updates)")
71 set(PYOSMIUM_PATH "${PYOSMIUM}")
72 message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
76 #-----------------------------------------------------------------------------
78 #-----------------------------------------------------------------------------
80 # Setting PHP binary variable as to command line (prevailing) or auto detect
82 if (BUILD_API OR BUILD_IMPORTER)
84 find_program (PHP_BIN php)
86 # sanity check if PHP binary exists
87 if (NOT EXISTS ${PHP_BIN})
88 message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
90 message (STATUS "Using PHP binary " ${PHP_BIN})
93 #-----------------------------------------------------------------------------
94 # import scripts and utilities (importer only)
95 #-----------------------------------------------------------------------------
99 check_import_finished.php
100 country_languages.php
109 foreach (script_source ${CUSTOMSCRIPTS})
110 configure_file(${PROJECT_SOURCE_DIR}/cmake/script.tmpl
111 ${PROJECT_BINARY_DIR}/utils/${script_source})
114 configure_file(${PROJECT_SOURCE_DIR}/cmake/tool.tmpl
115 ${PROJECT_BINARY_DIR}/nominatim)
118 #-----------------------------------------------------------------------------
119 # Targets for running a development webserver from the build directory.
120 #-----------------------------------------------------------------------------
123 add_custom_target(serve
124 php -S 127.0.0.1:8088
125 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website
128 add_custom_target(serve-global
130 WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website
134 #-----------------------------------------------------------------------------
136 #-----------------------------------------------------------------------------
141 set(TEST_BDD db osm2pgsql api)
143 find_program(PYLINT NAMES pylint3 pylint)
145 foreach (test ${TEST_BDD})
146 add_test(NAME bdd_${test}
147 COMMAND behave ${test}
148 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/test/bdd)
149 set_tests_properties(bdd_${test}
150 PROPERTIES ENVIRONMENT "NOMINATIM_DIR=${PROJECT_BINARY_DIR}")
155 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/test/php)
158 COMMAND phpcs --report-width=120 --colors lib website utils
159 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
162 message(STATUS "Using '${PYLINT}' for Python linting.")
164 COMMAND ${PYLINT} nominatim
165 WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
167 message(STATUS "pylint not found. Linting tests disabled.")
171 #-----------------------------------------------------------------------------
173 #-----------------------------------------------------------------------------
176 add_subdirectory(module)
179 #-----------------------------------------------------------------------------
181 #-----------------------------------------------------------------------------
184 add_subdirectory(docs)