]> git.openstreetmap.org Git - nominatim.git/blob - CMakeLists.txt
Merge pull request #2032 from lonvia/remove-ui
[nominatim.git] / CMakeLists.txt
1 #-----------------------------------------------------------------------------
2 #
3 #  CMake Config
4 #
5 #  Nominatim
6 #
7 #-----------------------------------------------------------------------------
8
9 cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
10 list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
11
12
13 #-----------------------------------------------------------------------------
14 #
15 #  Project version
16 #
17 #-----------------------------------------------------------------------------
18
19 project(nominatim)
20
21 set(NOMINATIM_VERSION_MAJOR 3)
22 set(NOMINATIM_VERSION_MINOR 5)
23 set(NOMINATIM_VERSION_PATCH 0)
24
25 set(NOMINATIM_VERSION "${NOMINATIM_VERSION_MAJOR}.${NOMINATIM_VERSION_MINOR}.${NOMINATIM_VERSION_PATCH}")
26
27 add_definitions(-DNOMINATIM_VERSION="${NOMINATIM_VERSION}")
28
29
30 #-----------------------------------------------------------------------------
31 #  Configuration
32 #-----------------------------------------------------------------------------
33
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)")
40
41 #-----------------------------------------------------------------------------
42 #  osm2pgsql (imports/updates only)
43 #-----------------------------------------------------------------------------
44
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")
50     endif()
51     set(BUILD_TESTS_SAVED "${BUILD_TESTS}")
52     set(BUILD_TESTS off)
53     set(WITH_LUA off CACHE BOOL "")
54     add_subdirectory(osm2pgsql)
55     set(BUILD_TESTS ${BUILD_TESTS_SAVED})
56 endif()
57
58
59 #-----------------------------------------------------------------------------
60 #  python and pyosmium (imports/updates only)
61 #-----------------------------------------------------------------------------
62
63 if (BUILD_IMPORTER)
64     find_package(PythonInterp 3)
65
66     find_program(PYOSMIUM pyosmium-get-changes)
67     if (NOT EXISTS "${PYOSMIUM}")
68         set(PYOSMIUM_PATH "")
69             message(WARNING "pyosmium-get-changes not found (required for updates)")
70     else()
71         set(PYOSMIUM_PATH "${PYOSMIUM}")
72         message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
73     endif()
74 endif()
75
76 #-----------------------------------------------------------------------------
77 # PHP
78 #-----------------------------------------------------------------------------
79
80 # Setting PHP binary variable as to command line (prevailing) or auto detect
81
82 if (BUILD_API OR BUILD_IMPORTER)
83     if (NOT PHP_BIN)
84          find_program (PHP_BIN php)
85     endif()
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 ")
89     endif()
90     message (STATUS "Using PHP binary " ${PHP_BIN})
91 endif()
92
93 #-----------------------------------------------------------------------------
94 # import scripts and utilities (importer only)
95 #-----------------------------------------------------------------------------
96
97 if (BUILD_IMPORTER)
98    set(CUSTOMSCRIPTS
99        utils/check_import_finished.php
100        utils/country_languages.php
101        utils/importWikipedia.php
102        utils/export.php
103        utils/query.php
104        utils/setup.php
105        utils/specialphrases.php
106        utils/update.php
107        utils/warm.php
108       )
109
110    foreach (script_source ${CUSTOMSCRIPTS})
111        configure_file(${PROJECT_SOURCE_DIR}/cmake/script.tmpl
112                       ${PROJECT_BINARY_DIR}/${script_source})
113    endforeach()
114 endif()
115
116 #-----------------------------------------------------------------------------
117 # webserver scripts (API only)
118 #-----------------------------------------------------------------------------
119
120 if (BUILD_API)
121    set(WEBSITESCRIPTS
122        website/deletable.php
123        website/details.php
124        website/lookup.php
125        website/polygons.php
126        website/reverse.php
127        website/search.php
128        website/status.php
129    )
130
131    foreach (script_source ${WEBSITESCRIPTS})
132        configure_file(${PROJECT_SOURCE_DIR}/cmake/website.tmpl
133                       ${PROJECT_BINARY_DIR}/${script_source})
134    endforeach()
135
136    set(WEBPATHS css images js)
137
138    foreach (wp ${WEBPATHS})
139        execute_process(
140            COMMAND ln -sf ${PROJECT_SOURCE_DIR}/website/${wp} ${PROJECT_BINARY_DIR}/website/
141        )
142    endforeach()
143
144    add_custom_target(serve
145            php -S 127.0.0.1:8088
146            WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website
147    )
148
149    add_custom_target(serve-global
150            php -S 0.0.0.0:8088
151            WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/website
152    )
153 endif()
154
155 #-----------------------------------------------------------------------------
156 # default settings
157 #-----------------------------------------------------------------------------
158
159 configure_file(${PROJECT_SOURCE_DIR}/settings/defaults.php
160                ${PROJECT_BINARY_DIR}/settings/settings.php)
161
162 #-----------------------------------------------------------------------------
163 # Tests
164 #-----------------------------------------------------------------------------
165
166 if (BUILD_TESTS)
167     include(CTest)
168
169     set(TEST_BDD db osm2pgsql api)
170
171     foreach (test ${TEST_BDD})
172         add_test(NAME bdd_${test}
173                  COMMAND behave ${test}
174                  WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/test/bdd)
175         set_tests_properties(bdd_${test}
176             PROPERTIES ENVIRONMENT "NOMINATIM_DIR=${PROJECT_BINARY_DIR}")
177     endforeach()
178
179     add_test(NAME php
180              COMMAND phpunit ./
181              WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/test/php)
182
183     add_test(NAME phpcs
184              COMMAND phpcs --report-width=120 --colors lib website utils
185              WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
186 endif()
187
188 #-----------------------------------------------------------------------------
189 # Postgres module
190 #-----------------------------------------------------------------------------
191
192 if (BUILD_MODULE)
193     add_subdirectory(module)
194 endif()
195
196 #-----------------------------------------------------------------------------
197 # Documentation
198 #-----------------------------------------------------------------------------
199
200 if (BUILD_DOCS)
201    add_subdirectory(docs)
202 endif()