From a210f9cbc1eb222d1ae975789195e9549ea90994 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Tue, 8 Aug 2017 10:28:54 -0500 Subject: [PATCH] Use C++14, not 17 Otherwise the build fails on my system --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dcc812050..529ad3d29 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ INCLUDE( VersionMacros ) INCLUDE( SetupTargetMacros ) set( BLOCKCHAIN_NAME "Eos" ) -set( CMAKE_CXX_STANDARD 17 ) +set( CMAKE_CXX_STANDARD 14 ) set( CLI_CLIENT_EXECUTABLE_NAME eos_client ) set( GUI_CLIENT_EXECUTABLE_NAME eos ) -- GitLab