Skip to content

Commit 804527c

Browse files
committed
Fix our CMake version dependency: 3.1
I.e. inside FindGMock.cmake we're using find_dependency() from the CMakeFindDependencyMacro module. That module only got added in CMake 3.0. Furthermore we're relying on the import target Threads::Threads, which only gets added with CMake 3.1. So bump our requirement to what it is we really need.
1 parent ca6535d commit 804527c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8.12)
1+
cmake_minimum_required(VERSION 3.1)
22

33
project(Cucumber-Cpp)
44

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ with [CPP].
1717

1818
It relies on a few executables:
1919

20-
* [cmake](https://cmake.org/download/) 2.8.12 or later.
20+
* [cmake](https://cmake.org/download/) 3.1 or later.
2121
Required to setup environment and build software
2222

2323
It relies on a few libraries:

0 commit comments

Comments
 (0)