Skip to content

Commit 2d633ec

Browse files
committed
Switch to C++14
(Because libosmium switched.)
1 parent f3518fa commit 2d633ec

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#-----------------------------------------------------------------------------
88

9-
cmake_minimum_required(VERSION 3.7 FATAL_ERROR)
9+
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
1010
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
1111

1212
project(osmium-area VERSION 0.0.1)
@@ -120,7 +120,7 @@ if(CPPCHECK)
120120

121121
add_custom_target(cppcheck
122122
${CPPCHECK}
123-
--std=c++11 ${CPPCHECK_OPTIONS}
123+
--std=c++14 ${CPPCHECK_OPTIONS}
124124
${CPPCHECK_FILES}
125125
)
126126
else()

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ up the areas. The results are stored in an Sqlite database.
9797

9898
## Prerequisites
9999

100-
You need a C++11 compliant compiler. GCC 4.8 and later as well as clang 3.4 and
101-
later are known to work. You also need the following libraries:
100+
You need a C++14 compliant compiler. You also need the following libraries:
102101

103102
Osmium Library
104103
Need at least version 2.15.4
@@ -161,7 +160,7 @@ defaults is RelWithDebInfo.
161160

162161
## License
163162

164-
Copyright (C) 2016-2021 Jochen Topf <[email protected]>
163+
Copyright (C) 2016-2024 Jochen Topf <[email protected]>
165164

166165
This program is available under the GNU GENERAL PUBLIC LICENSE Version 3.
167166
See the file LICENSE.txt for the complete text of the license.
@@ -171,4 +170,3 @@ See the file LICENSE.txt for the complete text of the license.
171170

172171
This program was written and is maintained by Jochen Topf <[email protected]>.
173172

174-

0 commit comments

Comments
 (0)