Skip to content

Commit 9d03204

Browse files
committed
Update the minimum CMake version to 3.10.0
Related to hirrolot/metalang99#33.
1 parent 2cd2d06 commit 9d03204

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## unreleased
88

9+
### Fixed
10+
11+
- Update the minimum required CMake version to 3.10.0 due to deprecation (see [metalang99/issues/33](https://github.com/hirrolot/metalang99/issues/33)).
12+
913
## 1.6.4 - 2023-03-11
1014

1115
### Fixed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.11.4)
1+
cmake_minimum_required(VERSION 3.10.0)
22
project(datatype99 LANGUAGES C)
33

44
# Fix the warnings about `DOWNLOAD_EXTRACT_TIMESTAMP` in newer CMake versions.
@@ -10,7 +10,7 @@ include(FetchContent)
1010

1111
FetchContent_Declare(
1212
metalang99
13-
URL https://github.com/hirrolot/metalang99/archive/refs/tags/v1.13.2.tar.gz
13+
URL https://github.com/hirrolot/metalang99/archive/refs/tags/v1.13.5.tar.gz
1414
)
1515

1616
FetchContent_MakeAvailable(metalang99)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU")
6262
endif()
6363
```
6464

65-
(By default, `datatype99/CMakeLists.txt` downloads Metalang99 [v1.13.2](https://github.com/hirrolot/metalang99/releases/tag/v1.13.2) from the GitHub releases; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.)
65+
(By default, `datatype99/CMakeLists.txt` downloads Metalang99 [v1.13.5](https://github.com/hirrolot/metalang99/releases/tag/v1.13.5) from the GitHub releases; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.)
6666

6767
[`FetchContent_Declare`]: https://cmake.org/cmake/help/latest/module/FetchContent.html#command:fetchcontent_declare
6868

0 commit comments

Comments
 (0)