Skip to content

Commit

Permalink
cmake: Require cmake 3.16 or later. (#7015)
Browse files Browse the repository at this point in the history
Support for requiring cmake < 3.4 may go away soon (according to
a deprecation notice when building).

Ubuntu 20.04 provides cmake 3.16 and current is 3.27, so that seems
like a reasonable version to require.
  • Loading branch information
waywardmonkeys committed Nov 26, 2023
1 parent 2354998 commit 9d3fef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Enforce some CMake policies
cmake_minimum_required(VERSION 3.4)
cmake_minimum_required(VERSION 3.16)

set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
project(Z3 VERSION 4.12.3.0 LANGUAGES CXX)
Expand Down

0 comments on commit 9d3fef3

Please sign in to comment.