Skip to content

Commit a3d7541

Browse files
authored
Update minimum CMake to v3.10 (#769)
* Update minimum CMake to v3.10 * Update docs with new CMake minimum 3.10 * Update gate submodule to v0.11.0 Updates minimum CMake to v3.10
1 parent ead00a6 commit a3d7541

File tree

663 files changed

+740
-763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

663 files changed

+740
-763
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ assignees: ''
1919
```cmake
2020
# CMakeLists.txt
2121
22-
cmake_minimum_required(VERSION 3.5)
22+
cmake_minimum_required(VERSION 3.10)
2323
2424
include("cmake/HunterGate.cmake")
2525
HunterGate(

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
* I've checked this [Git style guide](https://0.readthedocs.io/en/latest/git.html). **[Yes|No]**
3636
* I've checked this [CMake style guide](https://0.readthedocs.io/en/latest/cmake.html). **[Yes|No]**
37-
* My change will work with CMake 3.5 (minimum requirement for Hunter). **[Yes|No]**
37+
* My change will work with CMake 3.10 (minimum requirement for Hunter). **[Yes|No]**
3838
* I will try to keep this pull request as small as possible and will try not to mix unrelated features. **[Yes|No]**
3939

4040
---

cmake/modules/hunter_apply_gate_settings.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(CMakeParseArguments) # cmake_parse_arguments
77

cmake/modules/hunter_boost_component_b2_args.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2016, Ruslan Baratov
33
# All rights reserved.
44

5-
cmake_minimum_required(VERSION 3.5)
5+
cmake_minimum_required(VERSION 3.10)
66

77
# for iostreams dependency on ZLIB and BZIP2
88
include(hunter_add_package)

cmake/modules/hunter_calculate_config_sha1.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_assert_not_empty_string)
77
include(hunter_config)

cmake/modules/hunter_calculate_self.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_internal_error)
77
include(hunter_assert_not_empty_string)

cmake/modules/hunter_lock_directory.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_fatal_error)
77
include(hunter_status_debug)

cmake/modules/hunter_make_directory.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_internal_error)
77
include(hunter_lock_directory)

cmake/modules/hunter_set_config_location.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015, Ruslan Baratov
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_internal_error)
77
include(hunter_status_print)

cmake/modules/hunter_setup_msvc.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2014-2016, Ruslan Baratov, Sumedh Ghaisas
22
# All rights reserved.
33

4-
cmake_minimum_required(VERSION 3.5)
4+
cmake_minimum_required(VERSION 3.10)
55

66
include(hunter_fatal_error)
77
include(hunter_internal_error)

0 commit comments

Comments
 (0)