Skip to content

Commit 40c3ad6

Browse files
committed
Increment minimum required CMake version to 3.15 (nonstd-lite issue 73)
nonstd-lite/nonstd-lite#73
1 parent adbdcec commit 40c3ad6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Distributed under the Boost Software License, Version 1.0. (See accompanying
44
# file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
55

6-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
6+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
77

88
project(
99
lest

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# -Dlest_FEATURE_TIME=1
99

1010
if( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
11-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
11+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1212
endif()
1313

1414
project( examples )

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# -Dlest_FEATURE_TIME=1
99

1010
if( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
11-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
11+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1212
endif()
1313

1414
project( test LANGUAGES CXX )

0 commit comments

Comments
 (0)