Skip to content

Commit dfb81fd

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

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

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

8-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
8+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
99

1010
# boolean-lite project and version, updated by script/update-version.py:
1111

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77

88
if( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
9-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
9+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1010
endif()
1111

1212
project( example LANGUAGES CXX )

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77

88
if( NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION )
9-
cmake_minimum_required( VERSION 3.5 FATAL_ERROR )
9+
cmake_minimum_required( VERSION 3.15 FATAL_ERROR )
1010
endif()
1111

1212
project( test LANGUAGES CXX )

0 commit comments

Comments
 (0)