Skip to content

Commit 319aaaf

Browse files
committed
chore: bump minimum CMake version from 3.13 to 3.18
Required by mimalloc v3.3.1.
1 parent 5bd2445 commit 319aaaf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.13.0)
1+
cmake_minimum_required(VERSION 3.18.0)
22

33
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
44

docs/installing-solidity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ The following are dependencies for all builds of Solidity:
324324
| Software | Notes |
325325
+===================================+=======================================================+
326326
| `CMake`_ (version 3.21.3+ on | Cross-platform build file generator. |
327-
| Windows, 3.13+ otherwise) | |
327+
| Windows, 3.18+ otherwise) | |
328328
+-----------------------------------+-------------------------------------------------------+
329329
| `Boost`_ (version 1.77+ on | C++ libraries. |
330330
| Windows, 1.83+ otherwise) | |

scripts/ci/install_and_check_minimum_requirements.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BOOST_VERSION=1.83
88

99
# minimum cmake version
1010
CMAKE_MAJOR=3
11-
CMAKE_MINOR=13
11+
CMAKE_MINOR=18
1212
CMAKE_PATCH=0
1313
CMAKE_FULL_VERSION="${CMAKE_MAJOR}.${CMAKE_MINOR}.${CMAKE_PATCH}"
1414

0 commit comments

Comments
 (0)