]> git.openstreetmap.org Git - nominatim.git/blob - CMakeLists.txt
move checkModilePresence to class, delete own debug echo
[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 1)
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 #
32 #  Find external dependencies
33 #
34 #-----------------------------------------------------------------------------
35
36 set(BUILD_TESTS off CACHE BOOL "Build test suite" FORCE)
37 set(WITH_LUA off CACHE BOOL "Build with lua support" FORCE)
38
39 if (NOT EXISTS "${CMAKE_SOURCE_DIR}/osm2pgsql/CMakeLists.txt")
40     message(FATAL_ERROR "The osm2pgsql directory is empty.\
41     Did you forget to check out Nominatim recursively?\
42     \nTry updating submodules with: git submodule update --init")
43 endif()
44 add_subdirectory(osm2pgsql)
45
46 find_package(Threads REQUIRED)
47
48 unset(PostgreSQL_TYPE_INCLUDE_DIR CACHE)
49 set(PostgreSQL_TYPE_INCLUDE_DIR "/usr/include/")
50 find_package(PostgreSQL REQUIRED)
51 include_directories(${PostgreSQL_INCLUDE_DIRS})
52 link_directories(${PostgreSQL_LIBRARY_DIRS})
53
54 find_program(PYOSMIUM pyosmium-get-changes)
55 if (NOT EXISTS "${PYOSMIUM}")
56     set(PYOSMIUM_PATH "")
57         message(WARNING "pyosmium-get-changes not found (required for updates)")
58 else()
59     set(PYOSMIUM_PATH "${PYOSMIUM}")
60     message(STATUS "Using pyosmium-get-changes at ${PYOSMIUM_PATH}")
61 endif()
62
63
64 find_program(PG_CONFIG pg_config)
65 execute_process(COMMAND ${PG_CONFIG} --pgxs
66                 OUTPUT_VARIABLE PGXS
67                 OUTPUT_STRIP_TRAILING_WHITESPACE)
68
69 if (NOT EXISTS "${PGXS}")
70     message(FATAL_ERROR "Postgresql server package not found.")
71 endif()
72
73 find_package(ZLIB REQUIRED)
74
75 find_package(BZip2 REQUIRED)
76
77 find_package(LibXml2 REQUIRED)
78 include_directories(${LIBXML2_INCLUDE_DIR})
79
80 # Setting PHP binary variable as to command line (prevailing) or auto detect
81 if (NOT PHP_BIN)
82      find_program (PHP_BIN php)
83 endif()
84 # sanity check if PHP binary exists
85 if (NOT EXISTS ${PHP_BIN})
86     message(FATAL_ERROR "PHP binary not found. Install php or provide location with -DPHP_BIN=/path/php ")
87 endif()
88 message (STATUS "Using PHP binary " ${PHP_BIN})
89
90 #-----------------------------------------------------------------------------
91 #
92 # Setup settings and paths
93 #
94 #-----------------------------------------------------------------------------
95
96 set(CUSTOMFILES
97     settings/phrase_settings.php
98     website/deletable.php
99     website/details.php
100     website/hierarchy.php
101     website/lookup.php
102     website/polygons.php
103     website/reverse.php
104     website/search.php
105     website/status.php
106     utils/blocks.php
107     utils/country_languages.php
108     utils/imports.php
109     utils/importWikipedia.php
110     utils/export.php
111     utils/query.php
112     utils/server_compare.php
113     utils/setup.php
114     utils/specialphrases.php
115     utils/update.php
116     utils/warm.php
117    )
118
119 foreach (cfile ${CUSTOMFILES})
120     configure_file(${PROJECT_SOURCE_DIR}/${cfile} ${PROJECT_BINARY_DIR}/${cfile})
121 endforeach()
122
123 configure_file(${PROJECT_SOURCE_DIR}/settings/defaults.php ${PROJECT_BINARY_DIR}/settings/settings.php)
124
125 set(WEBPATHS css images js)
126
127 foreach (wp ${WEBPATHS})
128     execute_process(
129         COMMAND ln -sf ${PROJECT_SOURCE_DIR}/website/${wp} ${PROJECT_BINARY_DIR}/website/
130     )
131 endforeach()
132
133
134 #-----------------------------------------------------------------------------
135 #
136 # Tests
137 #
138 #-----------------------------------------------------------------------------
139
140 include(CTest)
141
142 set(TEST_BDD db osm2pgsql api)
143
144 foreach (test ${TEST_BDD})
145     add_test(NAME bdd_${test}
146              COMMAND lettuce features/${test}
147              WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests)
148     set_tests_properties(bdd_${test}
149         PROPERTIES ENVIRONMENT "NOMINATIM_DIR=${PROJECT_BINARY_DIR}")
150 endforeach()
151
152 add_test(NAME php
153          COMMAND phpunit ./
154          WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests-php)
155
156 #-----------------------------------------------------------------------------
157
158 add_subdirectory(module)
159 add_subdirectory(nominatim)
160 add_subdirectory(docs)
161
162 #-----------------------------------------------------------------------------