Skip to content

Commit 9d3fef3

Browse files
cmake: Require cmake 3.16 or later. (#7015)
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.
1 parent 2354998 commit 9d3fef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Enforce some CMake policies
2-
cmake_minimum_required(VERSION 3.4)
2+
cmake_minimum_required(VERSION 3.16)
33

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

0 commit comments

Comments
 (0)