Skip to content

Commit 08a4f67

Browse files
committed
Bump cmake_minimum_required to 3.10 to be more future proof.
Compatibility with versions of CMake older than 3.10 is deprecated since CMake 3.31.
1 parent 51dd778 commit 08a4f67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.5)
1+
cmake_minimum_required(VERSION 3.10)
22

33
set(LIB_VERSION_MAJOR 1)
44
set(LIB_VERSION_MINOR 4)

example/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.5)
1+
cmake_minimum_required(VERSION 3.10)
22

33
set(CMAKE_C_STANDARD 99)
44
set(CMAKE_C_STANDARD_REQUIRED ON)

fuzz/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.5)
1+
cmake_minimum_required(VERSION 3.10)
22

33
set(CMAKE_C_COMPILER clang)
44

0 commit comments

Comments
 (0)