Skip to content

Commit

Permalink
Fix CMake minimum required version
Browse files Browse the repository at this point in the history
The "C++17" value of the `CXX_STANDARD` target property, which was
introduced in chaincodelabs#25, is available in
CMake 3.8 and newer.
  • Loading branch information
hebasto committed Aug 26, 2022
1 parent 49dc279 commit 6902bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6902bfd

Please sign in to comment.