Skip to content

Commit 50b3e2d

Browse files
committed
Relax cmake version requirements
so we can build with Ubuntu 24.04 (which has cmake 3.28.0.) I guess 3.5.0 is good enough, though I didn't check.
1 parent 96deaa3 commit 50b3e2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: MIT
33
# found in the top-level directory of this distribution.
44

5-
cmake_minimum_required(VERSION 4.0)
5+
cmake_minimum_required(VERSION 3.5)
66
project(cppast VERSION 0.1.0)
77

88
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)

external/tpl/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 4.0)
1+
cmake_minimum_required(VERSION 3.5)
22

33
project(tiny-process-library)
44

0 commit comments

Comments
 (0)