From 6902bfd40e33a0007f75bce8af0fc0b10a147e86 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Fri, 26 Aug 2022 23:36:51 +0100 Subject: [PATCH] Fix CMake minimum required version The "C++17" value of the `CXX_STANDARD` target property, which was introduced in chaincodelabs/libmultiprocess#25, is available in CMake 3.8 and newer. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 55c2a6b..84312e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.8) project("Libmultiprocess" CXX) include(CMakePushCheckState) include(CheckCXXSourceCompiles)