From fc77ae7b0d59a80269c5b3649d595305171ab02e Mon Sep 17 00:00:00 2001 From: Sergey Kroshnin Date: Fri, 1 Feb 2019 21:27:59 +0300 Subject: [PATCH] Fix Boost 1.69 build (#1685) * Fix Boost 1.69 build * Revert script change --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 358d07a3..0b92e747 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -134,7 +134,7 @@ if (BOOST_ROOT) list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules") endif () -find_package (Boost 1.66.0 REQUIRED COMPONENTS filesystem log thread program_options) +find_package (Boost 1.66.0 REQUIRED COMPONENTS filesystem log thread program_options system) add_subdirectory(crypto/ed25519-donna)