From c422a86bfd5ddf9c9c725f083ab8646507ba3f43 Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Mon, 23 Nov 2020 16:20:16 +0100 Subject: [PATCH] cmake: fix boost version dependency Change-Id: Icec5121440c189ebd8bc26d2366730d332055dbc --- src/core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 204c3f3b..f1c12c33 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,5 +1,5 @@ ### Add Boost and Threads -find_package(Boost 1.42 COMPONENTS thread coroutine context REQUIRED) +find_package(Boost 1.53 COMPONENTS thread coroutine context REQUIRED) include_directories(${Boost_INCLUDE_DIRS}) link_directories(${Boost_LIBRARY_DIRS})