From 6d4113d9dbacc726b6eb06cd3ed3455130940fe3 Mon Sep 17 00:00:00 2001 From: Teon Banek <teon.banek@memgraph.io> Date: Wed, 20 Dec 2017 13:44:13 +0100 Subject: [PATCH] Require minimum 1.62 version of Boost Reviewers: mislav.bradac, mferencevic Reviewed By: mislav.bradac Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1070 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1fddb3cb2..c2016577c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -129,7 +129,7 @@ if (USE_READLINE) endif() set(Boost_USE_STATIC_LIBS ON) -find_package(Boost REQUIRED COMPONENTS serialization) +find_package(Boost 1.62 REQUIRED COMPONENTS serialization) set(libs_dir ${CMAKE_SOURCE_DIR}/libs) add_subdirectory(libs EXCLUDE_FROM_ALL)