Skip to content

Commit 6902bfd

Browse files
committed
Fix CMake minimum required version
The "C++17" value of the `CXX_STANDARD` target property, which was introduced in bitcoin-core#25, is available in CMake 3.8 and newer.
1 parent 49dc279 commit 6902bfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Distributed under the MIT software license, see the accompanying
33
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
cmake_minimum_required(VERSION 3.0)
5+
cmake_minimum_required(VERSION 3.8)
66
project("Libmultiprocess" CXX)
77
include(CMakePushCheckState)
88
include(CheckCXXSourceCompiles)

0 commit comments

Comments
 (0)