From 9dac12da46b9fb70673d3bcdba103b005a3f83d3 Mon Sep 17 00:00:00 2001 From: upstream svn Date: Sat, 30 Jan 2021 23:23:38 +0000 Subject: [PATCH] Always include the boost-package. Otherwise it won't get searched on a second run. --- .svn-revision | 2 +- cmake/boost.cmake | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.svn-revision b/.svn-revision index cc9a913f..e3360219 100644 --- a/.svn-revision +++ b/.svn-revision @@ -1 +1 @@ -11100 +11101 diff --git a/cmake/boost.cmake b/cmake/boost.cmake index 5d19cfce..51bc1ae6 100644 --- a/cmake/boost.cmake +++ b/cmake/boost.cmake @@ -1,4 +1,5 @@ include (FindThreads) +find_package (Boost ${MIN_BOOST_VERSION}) if (NOT ASIO_SOCKETS) include (CheckIncludeFiles) @@ -7,8 +8,6 @@ if (NOT ASIO_SOCKETS) set (Boost_USE_STATIC_LIBS TRUE) endif() - find_package (Boost ${MIN_BOOST_VERSION}) - if (Boost_FOUND) set (CMAKE_REQUIRED_INCLUDES ${Boost_INCLUDE_DIRS}) -- 2.11.4.GIT