Skip to content

Commit 8bca0b1

Browse files
authored
CMake < 3.10 will be removed in a future release. (#1225)
Update minimum CMake version to 3.10 See https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html for the deprecation notice.
1 parent 7a8d77a commit 8bca0b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

benchmark/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# The full license is in the file LICENSE, distributed with this software. #
1010
############################################################################
1111

12-
cmake_minimum_required(VERSION 3.8)
12+
cmake_minimum_required(VERSION 3.10)
1313

1414
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
1515
project(xsimd-benchmark)

examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# The full license is in the file LICENSE, distributed with this software. #
1010
############################################################################
1111

12-
cmake_minimum_required(VERSION 3.8)
12+
cmake_minimum_required(VERSION 3.10)
1313
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
1414
project(xsimd-examples)
1515

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# The full license is in the file LICENSE, distributed with this software. #
1010
############################################################################
1111

12-
cmake_minimum_required(VERSION 3.8)
12+
cmake_minimum_required(VERSION 3.10)
1313

1414
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
1515
project(xsimd-test)

0 commit comments

Comments
 (0)